Forum Discussion
scrail2004
Aug 21, 2025Brass Contributor
Excel (on Mac) Macro Highlight to the Top of a Column
Column F in the below table includes a blank cell. In a macro, I want to highlight cells F2 to F10. Since I could have any number of rows of data, I wrote the macro to get me to the last row of dat...
- Aug 22, 2025
Change it to
Range(Selection, Cells(1, Selection.Column)).Select
m_tarler
Aug 21, 2025Bronze Contributor
there are various ways. maybe something like:
Range(Selection, Cells(1,Selection.Column()).Select