I can't create a folder in mac vba with the following code:
' Create new folder for customer if not existing
With CreateObject("Scripting.FileSystemObject")
If Not .FolderExists(\Library\Pengeministeriet) Then
.CreateFolder Path
End If
End With
The error is that "Active X component can't create object".
What's the solution for this?