Form - Mac computer - Drop Down List

VictorHugo

New Member
Joined
Oct 2, 2017
Messages
2
Hello,

I m at a form, and there is a drop-down list. When clicking on a drop-down list it searches and results from the names of the cells. I did this formula because I had seen that Excel for Mac does not recognize the UsedRange.Rows command.

Dim oneCell As Range


For Each oneCell In Range("A1:A10")
ComboSearch.AddItem oneCell.Value
Next oneCell

The question is, when clicking on a name in a drop-down list, all the form should return the values of the other cells, but I don't know the commands in Mac in this part to substitute the Used.Range commands.

Private Sub InstructorName_Click()


Me.InstructorName.RowSource = "Sheet1!A:B"


totalregistre = worksheets("Sheet1").UsedRange.Rows.Count


For i = 0 To totalregistre


If InstructorName.ListIndex = i Then


InstructorName = Cells(i + 1, 1)
Specialization = Cells(i + 1, 2)
DateFrom = Cells(i + 1, 3)
DateTo = Cells(i + 1, 4)
HourFrom = Cellss(i + 1, 5)
HourTo = Cells(i + 1, 6)
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.

Forum statistics

Threads
1,216,127
Messages
6,129,024
Members
449,482
Latest member
al mugheen

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