I am trying to sort on the single column either in ASC or DESC order. For example, on Dept No wise, If user selects ASC, then report should be sorted in DEPTNOwise in ASC order else in DESC order.
from ur soln i can understand that we can design report where sorting columns will be different. again in this, is the calculated column also not a part of report? if yes, thats being duplicated right?
Sudhi,
If I can take up Dave's suggestion, make 2 calculated columns:
SortASC as IF(?prompt?="ASC" then DEPTNOWISE else NULL
SortDESC as IF(?prompt? = "DESC" then DEPTNOWISE else NULL
and sort the first in ascending order and the second in descending order.
lex
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.