Forum Discussion
jpat1234
6 years agoNew Member
unable to update row data - conditional column
Hi, I am trying to update conditional column row data based on calculation. below is my sample data. need to display certain catagories data as issue for all entries fort he same id, if one ent...
v-xicai
6 years agoCommunity Support
Hi jpat1234 ,
You may create measure like DAX below.
CountIssue=
VAR d= CALCULATE(COUNT(Table1[category]),FILTER(ALLSELECTED(Table1), Table1[ID] =MAX(Table1[ID])))
RETURN
IF(COUNTROWS(FILTER(Table1, Table1[ID]=MAX(Table1[ID])&& Table1[Issue] <> BLANK())) >1, d ,0)
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.