I need to sort a column (% productivity) in descending order.
Problem with this column is , column has few numbers, as well as empty cells and #DIV0. When i apply descending sort, Empty cell and #DIV0 gets the top most position followed by remaining number cells.
I need to push all empty as well as #DIV0 values at the bottom of the table.
Kindly suggest the way.
Custom sort is not working, option is disabled.
Please help. Thanks in advance
For example, use Alerter and define #DIV0 as -1. Then sort by desc and rows with #DIV0 changes to -1 and goes underneath. The same apply for Null values, consider as -2 or -1.
Also, you may want to hide, tweaks like that. This is the solution that I can think of.
Thanks…
I used IsNull and IsError which will give me -1 and others as 0. And then i sort this column(of -1 and 0) first and then the original . Then hide the cloumn of -1 and 0.