jaystang93
New Member
- Joined
- Sep 17, 2018
- Messages
- 2
Hello, I've inherited an Excel macro at work that I need to update. I am somewhat familiar with VBA but far from being an expert. Here is a snippet of the code I would like to ask about:
If Len(bad_data_temp) = 0 Then
bad_data_temp = arr1(i, 1) & " in row " & i & "@@@@@Range(" & column_number & i
End If
I don't understand what the Range and column_number is doing. What is the purpose of the "@" sign and why are there 5 of them? What is the "(" at the end of the Range doing? I tried Google but I couldn't find any information about this. Thanks for any help you can provide.
If Len(bad_data_temp) = 0 Then
bad_data_temp = arr1(i, 1) & " in row " & i & "@@@@@Range(" & column_number & i
End If
I don't understand what the Range and column_number is doing. What is the purpose of the "@" sign and why are there 5 of them? What is the "(" at the end of the Range doing? I tried Google but I couldn't find any information about this. Thanks for any help you can provide.