I'm building a range using Excel VBA that needs to skip one column. The rest are contiguous.
The range is dynamic, but in my test run it equals "F13:M13,O13:O13".
When I look at the values in this range it is only showing the values for F13:M13. Why doesn't it show O13:O13?
Thanks for replying!
The range is dynamic, but in my test run it equals "F13:M13,O13:O13".
When I look at the values in this range it is only showing the values for F13:M13. Why doesn't it show O13:O13?
Code:
sRange = sCol1 & sRow & ":" & sCol2 & sRow & "," & sCol3 & sRow & ":" & sCol3 & sRow
Set InputRngB = ActiveWorkbook.Worksheets(TEST_TAB).Range(sRange)
Thanks for replying!