A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
That toggle button Is NOT available on 365 MAC!!!! I've been complaining for months!!!
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
In excel, I cannot get the macro to do a custom sort for the active sheet. It just does it again on the first sheet. My menu bar in excel developer says I have got "Use Relative References", and it has been suggested this is causing this problem. I don't want "Relative References". How can I disable it?
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 toggle button Is NOT available on 365 MAC!!!! I've been complaining for months!!!
Richard,
re: wrong sheet used
Or...
Your code should be in a standard module, not the module attached to a worksheet?
'---
Jim Cone
Thank you. I would like to try using that toggle button but I do not know what or where it is. Can you tell me how to get to it?
Click the "Use Relative References" toggle button to switch on or off.
But that did not solve the issue, because absolute means
Range("A1").Select
and relative means
ActiveCell.Offset(-2, -1).Range("A1").Select
if you start from B3.
And both are bad. Please never use SELECT, SELECTION, ACTIVECELL, it is slow and error prone. Always refer to the objects directly.
Post the code you have, then we'll see.
Andreas.