Display table in reverse order in attachment

Hi

I've a bot to create a pdf file printing/displaying the entire table and I'm using the expression

<<Start: Select(Trademore[_rownumber], True,True)>> followed by the columns to be desplayed.

that print entire table in the same order as that of table. However I want to print that table in inverse order meanting last row has to be on top and top row at last following descending order.

The same is needed for another expression

<<Start: Select(Loan_USD[ID], True,True)>>

in which there is no column that has any sequence or grouping except the rownumber, which is not the key like the 1st expression above.

Requesting for help, pls. I understand this might way too trivial question for friends like @Steve @Marc_Dillon @WillowMobileSys @Suvrutt_Gurjar 

Thanks in advance!

Solved Solved
0 2 136
1 ACCEPTED SOLUTION

Plesse try

<< START: ORDERBY(Loan_USD[ID], [_ROWNUMBER], TRUE)>>

for the second one.

<<Start: ORDERBY(Trademore[_rownumber], [_ROWNUMBER],True)>> 

for the first one.

 

View solution in original post

2 REPLIES 2

Plesse try

<< START: ORDERBY(Loan_USD[ID], [_ROWNUMBER], TRUE)>>

for the second one.

<<Start: ORDERBY(Trademore[_rownumber], [_ROWNUMBER],True)>> 

for the first one.

 

It worked perfectsly Sir @Suvrutt_Gurjar , Thx for the quick support.

Top Labels in this Space