I am trying to write an If-Then statement that performs an action if the header row of the column of the active cell contains a plus (+) sign. For example, if the active cell is C23, it would check if C1 contained a plus sign.
I feel like I'm pretty close with the following code, but it's not working:
Thanks in advance!
I feel like I'm pretty close with the following code, but it's not working:
Code:
If InStr(Cells((ActiveCell.Column), 1), "+") <> 0 Then
Thanks in advance!