A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
That will work for now, but I'll leave this open to see if any one has has suggestions
Thanks for the reply
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Curios. I have a sheet with a range A1:A20 that needs to be Filtered A-Z for some formulas to work on other sheets. I have a macro set up to do this but other people that use sheet might not remember to do this. Is there a vba code that i can write to the sheet that if they leave that page that range would be sorted upon exiting sheet
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
That will work for now, but I'll leave this open to see if any one has has suggestions
Thanks for the reply
You can have a messagebox automatically open when exiting the worksheet with a custom text you could create yourself.
It's just a suggestion :-), here's the VBA code.
Private Sub Worksheet_Deactivate()
MsgBox "your Text"
End Sub