Hello rbyrd023,

I am not sure this what you want, but this code will set the background for the worksheet
  cngpic = Application.GetOpenFilename(Title:="Select an image to load", FileFilter:="Picture Files *.gif(*.gif),")

  If cngpic = False Then
    MsgBox "You did not load an image"
    Exit Sub 
  End If
   
  ActiveSheet.SetBackgroundPicture cngpic
.