I have a SQL Report driven by a query that sorts it in ascending order of some numerical value. But the user wants two particular rows of data, which happen to appear at different ordinal positions in the query results, to be juxtaposed. Is there a way to do this, either through the report’s driving SQL or the .rdl file itself?
Share
Just add another calculated expression as the first order by Expression, which puts those two values ahead of all others…
or, EDIT (to include @astander’s suggestion)
and another Edit, to put second_val immediately after first_Val…