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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hey, everyone!
Brand new to Power BI; tired looking for this solution but can't seem to find it.
Basicially I'm trying to create an avearge measure of a specific column, but with two filters engaged for the same column.
I have been able to calculate the Average in that column for ONE filter, but can't seem to figure out how to calculate for two filters. Here is the formula for the one filter calculation that works:
AVG TX IO =
Solved! Go to Solution.
Hi,
Modify the measure to
AVG TX IO = CALCULATE(AVERAGE ( '2024 Raw Data (2)'[TX] ),'2024 Raw Data (2)'[ Location] = "In-Office"||'2024 Raw Data (2)'[ Location] = "Out-Office")
Hope this helps.
Hi,
Modify the measure to
AVG TX IO = CALCULATE(AVERAGE ( '2024 Raw Data (2)'[TX] ),'2024 Raw Data (2)'[ Location] = "In-Office"||'2024 Raw Data (2)'[ Location] = "Out-Office")
Hope this helps.
Yes! Taking the FILTER function out and adding || worked! Much appreciated!!
You are welcome.
maybe try to use && to apply the second fileter
AVG TX IO =
Proud to be a Super User!