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
scrail2004
Aug 22, 2025Brass Contributor
m_tarler, Range(Selection, Cells(1,Selection.Column()).Select turns red when I paste it into the macro.
- HansVogelaarAug 22, 2025MVP
Change it to
Range(Selection, Cells(1, Selection.Column)).Select