CAMINHO = Application.GetOpenFilename("Worksheets (*.xls),
*.xls", , "SELECCIONE OS FICHEIROS", , True)
If VarType(CAMINHO) = 11 Then
MsgBox "NÃO FORAM SELECCIONADOS FICHEIROS", vbCritical
End If
If you want the user to select olny one file change True
to False.
Note that CAMINHO will be a array type variable if the
user select a file.