Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hello
Need help with dax. I have a table below with 4 columns and the last column is the count of first 3 columns, provided they have data in it. Can you please advise what dax statement I need to use for the Total ID column? Thanks in advance.
| ID1 | ID2 | ID3 | Total ID |
| 1aa | 1bb | 1cc | 3 |
| 2bb | 2cc | 2 | |
| 1ss | 1 |
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
Total ID count CC =
( 'Table'[ID1] <> BLANK () )
+ ( 'Table'[ID2] <> BLANK () )
+ ( 'Table'[ID3] <> BLANK () )
Great. Thanks a lot 🙂
Hi,
Please check the below picture and the attached pbix file.
Total ID count CC =
( 'Table'[ID1] <> BLANK () )
+ ( 'Table'[ID2] <> BLANK () )
+ ( 'Table'[ID3] <> BLANK () )
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 23 | |
| 22 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 63 | |
| 44 | |
| 42 | |
| 40 | |
| 39 |