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.

 

IDResult
33812741
33814331
33814330
33814330
33815031
33815030
33815030
33822011
33822010
33822010
33822511
33822510
33822510
33822891
33822890
33822890
33823341
33823340
33823340
33830401
33832231
33837461
33843911
33843910
33843910
33845471
33845521
33845891

 

Thanks for your support as always.

 

Regards

Abhijit Mishra

  • 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

     

3 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    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

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi Anonymous,

       

      Thanks for your reply.

       

      Is there a way I can do the second step in query editor also.

       

       

      Regards

      Abhijit

      • Anonymous's avatar
        Anonymous
        Not applicable

        DAX measure is much faster and the calculations happens inmemoy. Is there any specific reason why you want to do this Query Editor?

         

        Thanks
        Raj