I am just starting out with VBA on Excel 2011 for MAC. I have run the code below on Windows without a hitch, but get error 75 on mac. Any help much appreciated:
Sub cr_acc()
Dim rdata() As String, idxData As Long
Open "\Volumes\SMALL 1\1.txt" For Input As #1
rdata = Split(Input(LOF(1), #1), ";")
Close #1
idxData = 1
Do While idxData < UBound(rdata)
Debug.Print rdata(idxData)
Loop
End Sub