The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I am unable to use a measure inside calculate function please help!
highlighted one is a measure.
Hello @Jay__
Can you try applying the following DAX:
CALCULATE(
Average(pdt[rfbp]),
pdt[deliverymethod] = "SHP",
pdt[rfbp]>0,
Filter(pdt,
pdt[rfbp]< (write measure whole condition over here)
)
)
Please update me if it works or not.
Thank you.
If my answer helps, please mark it as solution.