Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need the path name and file name of the file that is opened with File Dialog (VBA macro in excel). I want to show this information with a hyperlink in my excelsheet. Can anyone help me?

Thanks in advance

edit:

This is what I just found:

Sub GetFilePath()

Set myFile = Application.FileDialog(msoFileDialogOpen)
With myFile
.Title = "Choose File"
.AllowMultiSelect = False
If .Show <> -1 Then
Exit Sub
End If
FileSelected = .SelectedItems(1)
End With

ActiveSheet.Range("A1") = FileSelected
End Sub

With this code I have the file path. Now i'm still looking for a way to get the filename.

Tx

share|improve this question

2 Answers

up vote 1 down vote accepted

Try this

Sub Demo()
    Dim lngCount As Long
    Dim cl As Range

    Set cl = ActiveCell
    ' Open the file dialog
    With Application.FileDialog(msoFileDialogOpen)
        .AllowMultiSelect = True
        .Show
        ' Display paths of each file selected
        For lngCount = 1 To .SelectedItems.Count
            ' Add Hyperlinks
            cl.Worksheet.Hyperlinks.Add _
                Anchor:=cl, Address:=.SelectedItems(lngCount), _
                TextToDisplay:=.SelectedItems(lngCount)
            ' Add file name
            'cl.Offset(0, 1) = _
            '    Mid(.SelectedItems(lngCount), InStrRev(.SelectedItems(lngCount), "\") + 1)
            ' Add file as formula
            cl.Offset(0, 1).FormulaR1C1 = _
                 "=TRIM(RIGHT(SUBSTITUTE(RC[-1],""\"",REPT("" "",99)),99))"


            Set cl = cl.Offset(1, 0)
        Next lngCount
    End With
End Sub
share|improve this answer
Hehe, I deleted my post because it was identical to yours. The OP can rest assured it will work :-) – Kim Gysen Oct 2 '12 at 9:26
Tx, this is exactly what i needed for the file path part! :D – VeVi Oct 2 '12 at 9:33
@user1346347 edited to also return file name – chris neilsen Oct 2 '12 at 9:34
Thank you very much! This is exactly what i need!! tx!! – VeVi Oct 2 '12 at 9:37
2  
@user1346347 Glad to help. If this answers your question, you should accept it (Click the tick) – chris neilsen Oct 2 '12 at 9:40

I think you want this:

Dim filename As String
filename = Application.GetOpenFilename

Dim cell As Range
cell = Application.Range("A1")
cell.Value = filename
share|improve this answer
Tx for your reaction. I think i didn't make myself very clear. I need to open a file. Of that file i need to know the file path and the filename. I have found a solution to get the filepath. I add it in my question. – VeVi Oct 2 '12 at 9:26
Updated my answer – JMK Oct 2 '12 at 9:28
I don't get my filename, maybe because I use FileDialog? – VeVi Oct 2 '12 at 9:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.