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
I have the following table and i want to filter one of two rows based on a what-if parameter.
| Threshold Lower | Threshold Upper | Intercept | Gradient |
| 0 | 100000 | 0.05 | 2 |
| 100000 | 200000 | 0.1 | 4
|
I have tried to create a new calculated table using the following DAX formula:
So, what the measure will include?
By the way, countows is not defined as function in my Power BI
@Anonymous , Sorry typo, countrows, use can use countx, sumx, minx, maxx and then use this var table
Measure =
var _Table_New = FILTER('Table', AND('Table'[Threshold Upper] >= 'Parameter'[Parameter Value],'Table'[Threshold Lower] <= 'Parameter'[Parameter Value]) )
return
countrows(_Table_New )
or
return
countX(_Table_New,_Table_New[Value] )
Why it returns the count of rows?
@Anonymous , You can not use any slicer or what-if parameter value in the creation of a calculated table.
You can create a table using that as var in measure. Each measure that need this table, you need to have that
Measure =
var _Table_New = FILTER('Table', AND('Table'[Threshold Upper] >= 'Parameter'[Parameter Value],'Table'[Threshold Lower] <= 'Parameter'[Parameter Value]) )
return
countows(_Table_New )
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 65 | |
| 43 | |
| 40 | |
| 29 | |
| 19 |
| User | Count |
|---|---|
| 200 | |
| 126 | |
| 103 | |
| 70 | |
| 54 |