Using MacScript with VBA to pull a file name

Orion19

Board Regular
Joined
Dec 18, 2017
Messages
56
Hi All and TIA,

I'm trying to use VBA to launch a file picker and save the file name that the user selects in a certain cell (on a Mac - msoFileDialogFilePicker isn't compatible). I managed to do this with the file path using the code below. However, I found the MacScript command on google and can't figure out how to edit it to store the file name instead of the file path. Any suggestions? Thanks again!!!

VBA Code:
Sub AddWordTemplate()

Dim FirstRow As Long
Dim folderPath As String
Dim RootFolder As String
Dim scriptstr As String

FirstRow = Sheet2.Range("F99999").End(xlUp).Row + 1 
RootFolder = MacScript("return (path to desktop folder) as String")
scriptstr = "(choose file with prompt ""Select the file""" & " default location alias """ & RootFolder & """) as string"
folderPath = MacScript(scriptstr)
Sheet2.Range("F" & FirstRow).Value = folderPath

End Sub
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
I figured it out by finding a function meant to clear everything to the left of the last / in a file path. I changed it to ":", updated the sub, and it worked great. My apologies to who wrote the function. In all my googling I lost track of who to give credit to.

VBA Code:
Sub AddWordTemplate()

Dim FirstRow As Long
Dim folderPath As String
Dim RootFolder As String
Dim scriptstr As String

FirstRow = Range("F99999").End(xlUp).Row + 1
RootFolder = MacScript("return (path to desktop folder) as String")
scriptstr = "(choose file with prompt ""Select the file""" & " default location alias """ & RootFolder & """) as string"
folderPath = MacScript(scriptstr)
Range("F" & FirstRow).Value = folderPath
Range("E" & FirstRow).Value = GetFilenameFromPath(folderPath)


End Sub

Function GetFilenameFromPath(ByVal strPath As String) As String
' Returns the rightmost characters of a string upto but not including the rightmost ':'

    If Right$(strPath, 1) <> ":" And Len(strPath) > 0 Then
        GetFilenameFromPath = GetFilenameFromPath(Left$(strPath, Len(strPath) - 1)) + Right$(strPath, 1)
    End If

End Function
 
Upvote 0

Forum statistics

Threads
1,214,991
Messages
6,122,628
Members
449,095
Latest member
bsb1122

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top