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.
I need to create a calculation where after meeting the condition it should filter out measure values.
Condition is - If City = Australia && Town = A || Town = B || Town = C then Filter out Measure Values ( Sales , Profit Etc.)
Any suggestions ?
Thanks for sharing your input, I will try this out. Also, can we include a time range in the calculation (which is to be filtered out) . Any suggestions on this ?
Hello @UditJ,
Can you please try to structure your DAX formula as follows:
FilteredMeasure =
CALCULATE(
[YourMeasure], // Your actual measure, e.g., [Sales]
FILTER(
'YourTable', // Your actual table name
'YourTable'[City] = "Australia" &&
(
'YourTable'[Town] = "A" ||
'YourTable'[Town] = "B" ||
'YourTable'[Town] = "C"
)
)
)
Thanks for your input, I will try this out, also can we include a specific time range (Which is to be filtered) in the same calculation?
@UditJ , You can create new mesures like
Calculate([Sales], filter(Table, Table[City] ="Australia" && Table[Town] in {"A", "B", "C"}) )
Calculate([Profit], filter(Table, Table[City] ="Australia" && Table[Town] in {"A", "B", "C"}) )
Or create a calculation group hand have item like
Calculate(selectedmeasure() filter(Table, Table[City] ="Australia" && Table[Town] in {"A", "B", "C"}) )
Model explorer public preview with calculation group authoring| Measure Slicer: https://youtu.be/VfxfJJ0RzvU
In the same calculation can we include data range? For Example - 28th Feb - 5th March means the calculation works for only this date range.
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 |
---|---|
64 | |
55 | |
53 | |
36 | |
34 |
User | Count |
---|---|
85 | |
74 | |
55 | |
45 | |
43 |