Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Need Flag for every unique value

Hi All,   I need your help in a logic. I need 1 in front of every unique count in query editor.   Here is the output which I need.   ID Result 3381274 1 3381433 1 3381433 0 3...
  • Anonymous's avatar
    Anonymous
    8 years ago

    Hi

     

    1. Add a index column starting 0( You can do this in Query Editor -> Add columns tab -> index column-> from 0)

    2. Create Rank_Flag column with the below formula:

    Rank_Flag = IF(calculate(COUNTROWS(Table1),(FILTER(Table1, EARLIER(Table1[Index])>=Sheet4[Table1])),Table1[ID]=EARLIER(Table1[ID])) =1,1,0)

      This will flag the first occurance of the ID . Hope this helps you.

     

     

    Thanks
    Raj