VBA - Current Cell Position* 10/03/2002 Sometimes we need to know the current cell position. This would do the trick. Sub MyPosition()myRow = ActiveCell.RowmyCol = ActiveCell.ColumnMsgbox myRow & "," & myColEnd Sub < Prev Next >