I tried to record it but it doesn't work. What is the code to selectthe whole column/row of an active cell? In excel, Shift+Space, Or,Ctrl+Space, will work. But I don't know what is the code for it.
Try these:Selection.EntireRow.SelectSelection.EntireColumn.Select
If it's the active cell's row you're after, the code isactivecell.entirerow.selectIf it's the column you want, it's activecell.entirecolumn.select