문제

i am grouping the record by ordercode which is integer value as ascending order. But ordercode have zero(0) as one of the value. when i am grouping records by ordercode, it starts withs zero group as first. but i dont want to show zero group as first. can we do like order should be ascending order of ordercode except zero group and i want zero group at the end of the report?

올바른 솔루션이 없습니다

다른 팁

Create a formula field that will result in the sorting that you desire, then group the formula field.

For example:

If {table.order_code}=0 Then
  1000000000
Else
  {table.order_code}

You can use Specified order where you can specify as required or if you need 0 as the last group why don't you group descending order.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top