Probably silly question...
I know in Excel, there's a function to Select All using Cntrl+A selecting cells that are not empty.
What is the VB equivalent for this if I try to get this in a Macro? I've tried recording it and looked at the code, but all it does is define a range to select (EG: Range(A1:J10).Select)
I know I can use 'ActiveSheet.Cells.Select' to select all cells in a workbook, but that's not what I really want to do.
I know in Excel, there's a function to Select All using Cntrl+A selecting cells that are not empty.
What is the VB equivalent for this if I try to get this in a Macro? I've tried recording it and looked at the code, but all it does is define a range to select (EG: Range(A1:J10).Select)
I know I can use 'ActiveSheet.Cells.Select' to select all cells in a workbook, but that's not what I really want to do.