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 August 31st. Request your voucher.
Hi, I am currently developing a report in Power BI desktop, one is a pivot table with the following columns:
Row: StoreCode
Column: Date
Value: Variance (calculated as measure)
Apart from that, I want to create a new summary table that will return count of StoreCodes per Date with Variance > x. Is it possible to set measure as a criteria to calculate the count? The report is in direct query mode.
Hi @Anonymous ,
Does that make sense? If so, kindly mark my answer as a solution to help others having the similar issue and close the case. If not, let me know and I'll try to help you further.
Best regards
Amy
Hi @Anonymous ,
Yes, it is possible to set measure as a criteria to calculate the count. Try to create measure using DAX below.
measure1 = CALCULATE(COUNT(Table1[StoreCode]),FILTER(ALLSELECTED(Table1),Table1[Date ]=MAX(Table1[Date ])&&Table1[Variance ]>x))
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.