A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi Madoc,
There is more that you should know before saying goodbye to this topic.
It is easy to add a userform in Office for Mac using code. However, there is something you must do before running the code. Go to Excel > Preferences > Security. You must click the check box Trust access to the VBA project object model.
Once you have established the trust setting, you can run this code to generate a userform:
Sub CreateUserForm()
Dim myForm As Object
Set myForm = ThisWorkbook.VBProject.VBComponents.Add(3)
End Sub