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.
Hi
I am seeking help with a revenue calculation
I want a total revenue for packages marked "prepaid", I am aware I can just use a filter option but seeking a formula which will exclude everything under the packages but summarize me all prepaid packages with price 34
Solved! Go to Solution.
hi, @Anonymous
If you want to create a "New Column", you could use EARLIER Function to add a formula as below
Best Regards,
Lin
Sales Measure = CALCULATE ( your calculation here, FILTER ( 'Table', Table[Packages] = "Pre-Paid" && Table[Package Price] = 34 ) )
You'll need an explicit FILTER in your DAX formula, something like this
@HotChilli
I was unable to input in the "calculation here" field , my actual total reveunue calculation is as shown in the image is as a form of "New Column " .. as per your instructio below i couldnt do the following
Sales Measure = CALCULATE ( Totalrevenue nok 2018, FILTER ( 'Table', Table[Packages] = "Pre-Paid" && Table[Package Price] = 34 ) )
hi, @Anonymous
If you want to create a "New Column", you could use EARLIER Function to add a formula as below
Best Regards,
Lin
a measure has to have an aggregation, usually for numbers that means SUM.