0

Record ID number and concatenate function

The ID number assigned to each record is the bane of my existence.  I have a table that shows the events (stages) however the stages (which are numbered) were not entered sequentially.  This table is linked to another, and the column that where I want to show the stages completed on that particular day show up out of order.  The concatenate function for that column applies to the ID number and not the value of that particular field.  All other functions (AVG, SUM, FIRST, MAX, etc) apply to the actual field value (stage number) instead of the ID number.  Why is this?  I know that the ID number is unique and cannot be changed, but why does the concatenate function not apply to the field value like the rest?

Screen Shot 2019-05-30 at 01.36.45

3 replies

null
    • Walt_Baker
    • 4 yrs ago
    • Reported - view

    Screen Shot 2019-05-30 at 01.36.07

    • Walt_Baker
    • 4 yrs ago
    • Reported - view

    Screen Shot 2019-05-30 at 01.36.07

    • Sean
    • 4 yrs ago
    • Reported - view

    I don't know how you managed to get the Id order like that in your first screenshot. The ^ symbol indicates the Column order should be ascending, but it's not in your screenshot. Having said that, if you want the order to be 24, 26, 27 in your second screenshot you can use the sort() function inside the concat() function...

     

    concat(sort(YourData))

Content aside

  • 4 yrs agoLast active
  • 3Replies
  • 1556Views