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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi Everyone, Beginer here in Dax .
I have a Table as below .
| ID | Policy Number | Policy Sequence | Master Sequence |
| 123456 | 2121W | 1 | 3 |
| 123456 | 213445 | 2 | 3 |
| 123456 | 4153 | 3 | 3 |
| 21345 | XVw1C | 1 | 2 |
| 21345 | XVCE | 2 | 2 |
My Table looks like Above , I would need to pick rows in this way after the filtering
and do the count of those rows that are filtered.
IDeal table
| ID | Policy Number | Policy Sequence | Master Sequence |
| 123456 | 4153 | 3 | 3 |
| 21345 | XVCE | 2 | 2 |
I can't seem to figur out exactly what need to be done in the filter.
My query is as below.
" CALCULATE(",
" DISTINCTCOUNT('Policy'[Policy Master Number]),",
" 'Policy' [Master Sequence] = 'Policy' [Policy Sequence]",
I know this should work in Sql and give a single row but i get this error when i try to do it this way to filter sigle row .
The expression contains multiple columns, but only a single column can be used in a True/False expression that is used as a table filter expression."
Any Help here would be greatly appreciated .
Solved! Go to Solution.
Hi @Anonymous ,
You could try to add a filter in measure like below to see whether it work or not
Measure 2 = CALCULATE(MIN('Table (3)'[Master Sequence]), FILTER('Table (3)','Table (3)'[Policy Sequence]='Table (3)'[Master Sequence] && 'Table (3)'[Policy Number]=MIN('Table (3)'[Policy Number])))
Measure = CALCULATE(MIN('Table (3)'[Policy Sequence]), FILTER('Table (3)','Table (3)'[Policy Sequence]='Table (3)'[Master Sequence] && 'Table (3)'[Policy Number]=MIN('Table (3)'[Policy Number])))
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
You could try to add a filter in measure like below to see whether it work or not
Measure 2 = CALCULATE(MIN('Table (3)'[Master Sequence]), FILTER('Table (3)','Table (3)'[Policy Sequence]='Table (3)'[Master Sequence] && 'Table (3)'[Policy Number]=MIN('Table (3)'[Policy Number])))
Measure = CALCULATE(MIN('Table (3)'[Policy Sequence]), FILTER('Table (3)','Table (3)'[Policy Sequence]='Table (3)'[Master Sequence] && 'Table (3)'[Policy Number]=MIN('Table (3)'[Policy Number])))
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Perhaps create a new column like:
Column = IF([Policy Sequence] = [Master Sequence],1,0)
Then just filter on Column = 1
Thanks for the Quick Response , Is it possible to create a column from the set on the run time and filter the rows.
The reason i'm asking this, we are using this as an cube XMLA rather than a Power Bi Front End.
I would have to write a measure .
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 54 | |
| 41 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 97 | |
| 83 | |
| 35 | |
| 29 | |
| 25 |