Range("D3").Name = "ChkPart"
Range("ChkPart", Range("ChkPart").Offset.End(xlToRight)).Select
The code above I can use to select from “ChkPart” (or cell D3) through the cells with data to the right. What I would like to do is select the cells to the right beginning from E3.
I know the syntax Range(“ChkPart”).Offset(0, 1) could be used to move over one cell to the right, but within one VBA statement, how to get it to select from E3 to the right?
I’ve tried at least four different ways without success…. Ugghhh.
Much thanks. Have a great new year to all.
Range("ChkPart", Range("ChkPart").Offset.End(xlToRight)).Select
The code above I can use to select from “ChkPart” (or cell D3) through the cells with data to the right. What I would like to do is select the cells to the right beginning from E3.
I know the syntax Range(“ChkPart”).Offset(0, 1) could be used to move over one cell to the right, but within one VBA statement, how to get it to select from E3 to the right?
I’ve tried at least four different ways without success…. Ugghhh.
Much thanks. Have a great new year to all.
Last edited: