Hi,
Here is my current macro
Range("b1").Select
Selection.End(xlDown).Select
ActiveCell.Offset(0, 1).Select
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.Offset(0, -1)).Select
What I need it to do is to select one less cell counting from the right. Becaseu...