Is anyone aware of any differences in versions of .NET/VBA/Excel etc that would cause a reference to Range.Cells
to compile for most computers but not a client's new Mac ("with the error unknown data member")?
The code is:
Dim validationArr As Range
Set validationArr = Worksheets("sheet1").Range("B3:T3") 'Grab row dedicated to validation
For i = 1 To validationArr.Cells.Count
It thinks validationArr.Cells is unknown.
I'm just confused as to why it would compile and work on most computers including the client's old Mac but not on their new Mac.
I intend to replace it with validationArr.Rows(1).Cells.Count
and see if it works but have yet to confirm.