hexagon logo

Reports Sorting Reference ID

Hi I have research on line and in the forum, but I cannot find any references on how to sort by Ref_ID in order. When running a report for easier viewing without exporting to excel first. PCDMIS Reports puts everything in machine order. Can the sortup command be used in the label code below.

= ID +If(Len(REF_ID:1)>0,("-" + STR(REF_ID:1))," ")+ If(Len(REF_ID:2)>0 AND REF_ID:1<>REF_ID:2,
(" " + LOADSTR(-247)+" " +STR(REF_ID:2)),"")+ If(Len(REF_ID:3)>0 AND REF_ID:2<>REF_ID:3 AND REF_ID:3<>LOADSTR(-492),("( " +STR(REF_ID:3)+")"),"")+SUMMARY_TBLHDR

I would greatly appreciate any help

JT
Parents
  • The only way I can think of is doing the dimensions in balloon order in the program. Don't dimension directly after measuring, but in a block after everything is measured - then you can easily rearrange them in any order you want. Unfortunately, that will add a little bit to the total runtime, as the report isn't started until all measurements have been done.
Reply
  • The only way I can think of is doing the dimensions in balloon order in the program. Don't dimension directly after measuring, but in a block after everything is measured - then you can easily rearrange them in any order you want. Unfortunately, that will add a little bit to the total runtime, as the report isn't started until all measurements have been done.
Children
No Data