According to thread149-790093 one can give the user a choice of how to sort fields in a report by giving the user a parameter from which to select. A formula is based on the parameter, and then the formula is used for the sort order.
Is there a way I can modify the formula below to sort CompanyName in Ascending or Descending order, based on the parameter chosen by the user at runtime?
if {?GroupBy} = 'A'
then {table.companyname}
else if {?GroupBy} = 'D'
then {table.companyname};
Thanks, Caryn.
Is there a way I can modify the formula below to sort CompanyName in Ascending or Descending order, based on the parameter chosen by the user at runtime?
if {?GroupBy} = 'A'
then {table.companyname}
else if {?GroupBy} = 'D'
then {table.companyname};
Thanks, Caryn.