can some please tell me how to send the file name i get from the code below to a cell.
Code
Sub TestGetOpenFile()
Dim selectfile As Variant
Dim item As Variant
selectfile = Application.getopenfilename(MultiSelect:=True)
For Each item In selectfile
MsgBox item
Next item
End Sub