Select empty cell in Excel: VBA

Select empty cell in Excel: VBA

Visual Basic Application or VBA , when used in Microsoft Excel, is an efficient tool, as repetitive jobs can be automated with its help. Users can even write custom VBA code to meet their programming needs. Using interesting properties like offset, one can operate across different cells in Excel. Operations like selecting the next empty cell in a row can be automatically done and in this article we will provide the VBA code to so.

How to use VBA code to select the next empty cell?

Try this VBA code in order to select the next empty cell in a row in Microsoft Excel:

ActiveCell.Value = Player.Value      
Activecell.offset(0,4).value=Score.value      
'find last used cell on the row to the right      
ActiveCell.End(xlToRight).Select      
'move one cell to the right from the last used cell      
ActiveCell.Offset(0, 1).Select 
Any more excel questions? Check out our forum!
Around the same subject

Excel