Forum Discussion
ajisharavind_99
3 years agoAdvocate I
Count values based on other column
Hi, I hope someone can help me quickly find the answer to the below query
- 3 years ago
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 )
Jihwan_Kim
3 years agoSuper User
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
)
ajisharavind_99
3 years agoAdvocate I
Jihwan_Kim Thanks , Awsome !!