Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Currently I have a table of values
for .e.g
Column A | Column B |
aaaa | 0 |
bbbb | 1 |
ccccc | 2 |
ddddd | 3 |
And I also have a DAX Measure (Measure AA) that returns a single value of a number for e.g. 2 . This number will change accordingly based on certain formula of clicking on various other charts on the dashboard
My challenge now is , how do i filter the table on top, to only display all records where column B is less than or equal to <Measure AA>. I tried to create a calculated column to return true/false based on each row , to give me if it's less or equal to <Measure AA> but it gave an error that it must be aggregated .
Solved! Go to Solution.
I think you could do this with a measure:
filtermeasure = if(selectedvalue(columnb)<=<Measure AA>,1,0)
Then put this measure on the filter pane and select = 1
Thanks!
I think you could do this with a measure:
filtermeasure = if(selectedvalue(columnb)<=<Measure AA>,1,0)
Then put this measure on the filter pane and select = 1
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
76 | |
63 | |
51 | |
48 |
User | Count |
---|---|
204 | |
86 | |
64 | |
59 | |
56 |