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
  • AFAIK it can't be done.

    The way the reports work is when called, it starts at the top of the program and works down.

    For each command it encounters (Dimension, Feature, Alignment, Comment etc) it looks in a Rule Tree for what label to display for that command type. i.e. For a dimension location command use label X, for a comment use label Y. etc

    You need to be looking at custom reporting, where you can drag and drop commands in any order, but you need to do it for each dimension and for every program it's required for.
Reply
  • AFAIK it can't be done.

    The way the reports work is when called, it starts at the top of the program and works down.

    For each command it encounters (Dimension, Feature, Alignment, Comment etc) it looks in a Rule Tree for what label to display for that command type. i.e. For a dimension location command use label X, for a comment use label Y. etc

    You need to be looking at custom reporting, where you can drag and drop commands in any order, but you need to do it for each dimension and for every program it's required for.
Children