Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi,
I am very new to DAX and Power Pivot and I'm trying to build a measure where I count all the invoices with status "open", "sent", "paid" and "overdue". I want my measure to ignore "cancelled" status of invoices.
I created this, but I am worried that it's inefficient because it uses Filter funcion in my measure.
=CALCULATE(SUM(f_invoices[revenue_czk]),
FILTER(f_invoices,
f_invoices[invoice_status]= "open" ||
f_invoices[invoice_status]= "paid" ||
f_invoices[invoice_status]= "sent" ||
f_invoices[invoice_status]= "overdue"
))
Is it OK to use filter in such scenario or would you suggest something to make my measure more simple and resources efficient?
Thank you 🙏
Solved! Go to Solution.
hi @Peter65f1
it is OK.
you may make it more concise like this
Thank you, the second one is very ellegant because it takes care of potential new invoice statuses in the future. Great solution, have a great day 😊
hi @Peter65f1
it is OK.
you may make it more concise like this