Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello. I am trying to create a filter that will only return those results who have over a chosen amount for four of the five weeks.
Example I would want to filter for results that are >12 that should bring me results highlited in red as you can see in the screenshot.
Does anyone know can this kind of filter be created or it needs to be measure? In addition the value could change often so that should be taken in to the account. Thank you.
Solved! Go to Solution.
@Justas4478 Try this then:
Voids Value = var tempMeasure = CALCULATE(SUM(Actuals[_Value]), 'Transaction Type'[TransactionType] = "Voids")
return IF(tempMeasure>12, tempMeasure, BLANK())
@Justas4478 1. You can use visual filter (without additional measure).
2. Second option (with additional measure) - to create new 'what-if' parameter.
@Anonymous I only have access to the measures since report is using Live connection. And I am restricted to only be able to use measures. So I dont have access to the columns and I cant use new parameter option since it is grayed out. Is there any onther way to do these things when I can only use measures?
@Anonymous I cant use measure in the visual filter. It does not allow me to place it there.
@Anonymous Yea I dont know why it doesnt allow me to do that.
This is the measure that provides values shown in the previous screenshot table.
@Justas4478 Try this then:
Voids Value = var tempMeasure = CALCULATE(SUM(Actuals[_Value]), 'Transaction Type'[TransactionType] = "Voids")
return IF(tempMeasure>12, tempMeasure, BLANK())
@Anonymous It looks like it is working as intended. Thank you so much.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
79 | |
73 | |
58 | |
36 | |
32 |
User | Count |
---|---|
90 | |
62 | |
61 | |
49 | |
45 |