A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Just as an example - Create a table D:F numbers will be entered, and G {=IF(D24:F24>0,SUM(D24:F24),"")} then format as table.
Now if most of the table rows are filled it with numbers - then the G sort will show correctly "Largest to smallest", but if most of the tables rows are still empty - the sort in G will show "A to Z". The reason for that is cause the empty cells in G , excels reads them as "text" (do a =ISTEXT test). Now I got a table of 500 rows and i want to be able to sort as soon as a few rows are filled in.
Any work around?