Forum Discussion
Bruce1951
May 31, 2020Copper Contributor
Status Bar Count from a Macro
I have created a macro in Excel 2019 that presents the answer (Count) in the status bar at the lower left corner of the spreadsheet, (example 24 of 145 records found). The answer is correct. I would ...
- Jun 01, 2020Your very welcome, glad it helped. Please mark as answered to close the thread.
Wyn Hopkins
Jun 01, 2020MVP
Name a cell as "ResultCell" then lets say the count value created in you macro routine is called FoundCount then add a line of code at the end saying Range("ResultCell").value = FoundCount
- Bruce1951Jun 01, 2020Copper Contributor
Hi Wyn,
Thanks for the info. Unfortunately I am not knowledgeable enough to do what you are suggesting.