Hi All,
I have a large number of textboxes on a sheet and they will be filled with information from a sheet.
so for example
Code
Me.TextBox1.Value = Sheets("menu_numbers").Range("a2").Value
Me.TextBox2.Value = Sheets("menu_numbers").Range("a3").Value
Is there a way of filling the textboxes without having to name each cell individually like the above. I don't think there will be, but here is hoping someone will drop a knowledge bomb on me.
Thanks in advance
End Sub