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.
I created a measure to calculate how many events took longer than 90 minutes. Now I want to see what is the total cost of those events. When I add cost its showing me the total cost for all events.
Solved! Go to Solution.
please try
Cost > 90 =
SUMX (
FILTER ( RoadsideInfo, RoadsideInfo[EventDuration] > 90 ),
RoadsideInfo[InvoiceCharges]
)
please try
Cost > 90 =
SUMX (
FILTER ( RoadsideInfo, RoadsideInfo[EventDuration] > 90 ),
RoadsideInfo[InvoiceCharges]
)
If I want to look at charges from April - current date. how do I add that to the dax measure
Thank you