Hi,
How can I write the message in cell A2
Code:
Msg = "You selected:" & vbNewLine
For I = LBound(FileNames) To UBound(FileNames)
Msg = Msg & FileNames(I) & vbNewLine
Next I
MsgBox Msg
[/code]
I my VBA code I can select many files, and I need to write in some cells starting with A12
Thank you.
Bookmarks