Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello!
I'm new to Power BI and I'd like a help for this problem:
I have a table with ID and Reason Code, like that:
ID Reason Code Only this row for ID?
1 183 False
1 1 False
1 3 False
2 183 True
3 183 True
4 183 False
4 1 False
I need to discover if the reason code 183 is followed by other reason codes. I mean, if the reason code 183 is the only row for that id.
Thanks!
Solved! Go to Solution.
Measure = COUNTROWS(Table)
Put this into a table visualization with ID. Filter Measure > 1.
Alternatively, create another table of just unique ID's. Relate the tables. Create a calculated column in this table like:
Column = IF(COUNTROWS(RELATEDTABLE(Table))>1,"False","True")
Measure = COUNTROWS(Table)
Put this into a table visualization with ID. Filter Measure > 1.
Alternatively, create another table of just unique ID's. Relate the tables. Create a calculated column in this table like:
Column = IF(COUNTROWS(RELATEDTABLE(Table))>1,"False","True")
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 39 | |
| 37 | |
| 29 | |
| 24 |
| User | Count |
|---|---|
| 119 | |
| 100 | |
| 72 | |
| 69 | |
| 65 |