That line of code checks to see if the user has clicked Cancel in the dialog.
You don't say which worksheet you want to copy from so I'll assume it's the active sheet in the workbook the code is in.
Sub Prompt() 'Prompt user to select file from which to read data
Dim wbSrc As Workbook
Dim rngSrc As Range
Dim rngDst As Range
Dim Ref_WBook As String
Ref_WBook = Application.GetOpenFilename("Excel File (*.xls), *.xls") 'Command to allow browse procedure
If Ref_WBook <> "False" Then
Set wbSrc = Workbooks.Open (Ref_WBook)
With wbSrc.Worksheets("Data")
Set rngSrc = .Range("A1", .Range("A" & Rows.Count).End(xlUp))
End With
Set rngDst = ThisWorkbook.ActiveSheet.Range("B1")
rngSrc.Copy rngDst
End If
End Sub
Bookmarks