Forum Discussion

ajisharavind_99's avatar
ajisharavind_99
Advocate I
3 years ago
Solved

Count values based on other column

Hi,  

I hope someone can help me quickly find the answer to the below query

 

 

 

 

 

 

  • Hi,

    Please check the below picture and the attached pbix file.

    It is for creating a new column.

     

     

    Result CC =
    IF (
        COUNTROWS (
            FILTER ( Data, Data[ID] = EARLIER ( Data[ID] ) && Data[Actions 1] = "Open" )
        ) > 0,
        0,
        1
    )
    

     

2 Replies