Is there a better way to loop through the textboxes in a userform and change their values? This is the only way I could get it done.
For Each Control In Entry.Controls If Left(Control.Name, 4) = "Text" Then Control.Value = "" End If Next
Is there a better way to loop through the textboxes in a userform and change their values? This is the only way I could get it done.
For Each Control In Entry.Controls If Left(Control.Name, 4) = "Text" Then Control.Value = "" End If Next
Notifications