Been trying to figure out how to do this for a while. Can't seem to get it right.
This is my range:
I need to do this to that range:
Just trying to apply a LEFT(range,5) to the range I set above. Why can'tI figure out how?
I know its something small (as usual)
This is my range:
Code:
Set MyRange = wb.Sheets(1).Range("B4:C" & Cells(Rows.Count, "B").End(xlUp).Row)
I need to do this to that range:
Code:
Application.WorksheetFunction.Left(Range(MyRange), 5)
Just trying to apply a LEFT(range,5) to the range I set above. Why can'tI figure out how?
I know its something small (as usual)