I have a grid configured as a pivot table, showing only the summary. I would like to sort by a field, but not display it, but can figure out how to do it.
column names and values in my database :
item_sort item_name
1ca Current Asset
2lta Long term Asset
3cl Current Liability
4ltl Long Term Liability
On my report I want the order to be:
Current Asset
Long Term Asset
Current Liability
Long Term Liability
But the report sorts it alphabetically
Current Asset
Current Liability
Long Term Asset
Long Term Liability
Is there a way to decode “item_sort” at run time so that my report shows “item name” but in the right order?
Thanks.