Is there any concatenation for anything but strings? I have several check boxes in an excel sheet.
checkbox1
checkbox2
checkbox3..... etc
I would like to run concantenation within a loop where I do something like this sudo code....
For N = 1 to 10 Step 1
If checkbox(N) = -1 Then
do something
End If
Next N
I have working code that does what I want, but I have an If.. Then statement for every box on the sheet. If I could collapse this into a loop it would clean up my code alot. The only concatenation references I can find only talk about text. Any suggestions?
