In my code I have the following statement that works just the way I want it. The question is how would I rewrite this to work for columns?
lastRow = Sheets(sName).Range("C" & Rows.count).End(xlUp).row
so far I have...
partNumber = Sheets("RM_RESULTS").Range(Columns.count & 1).End(xlLeft).Column
It's obviously something so simple but everything I try...no luck.