I am looking for a VBA macro code to add csv files to zip without using an AppleScript script. I'm able to achieve this in Windows using the below code:
Set App = CreateObject("Shell.Application")
App.Namespace(ZIPFILEPATH).CopyHere csvFileName
I'm looking for a similar method for macOS.