Problem with Froms using MacOS 365

288enzo

Well-known Member
Joined
Feb 8, 2009
Messages
721
Office Version
  1. 2016
Platform
  1. Windows
My macro works perfectly on a PC machine, but now I'm trying it on a Mac and am getting Run-time error 380. Could not set the RowSource property. Invalid property value.

Is someone familiar with 365 for a Mac?

This is the code in question.

VBA Code:
Private Sub CommandButton1_Click()
    If Area_Input.ComboBox1.Value = "" Then
        MsgBox ("Choose an Area to proceed")
    Else
        Me.Hide
    End If
End Sub
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
You can't use ActiveX controls in a Mac. Use a forms button instead.
 
Upvote 0
You cannot use the RowSource property on a Mac. Use the List property and assign the range's value to it.
 
Upvote 0
I just found out that "User Forms" isn't available in the latest iteration of Excel 365 for the Mac. Ugh, so stupid.
 
Upvote 0
User forms are available to use, but there is no designer.
 
Upvote 0
User forms are available to use, but there is no designer.
That's not helpful at all, I would have to bounce back and forth to make changes to the form.

Not directed to you by any means.
 
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,334
Members
449,077
Latest member
Jocksteriom

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