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"m trying to create a measure based on two measures when the selected value is = "ALL" or <> "ALL"
Below is the measure I've been working with but it won't calculate. Any helps is much appreciated
Solved! Go to Solution.
If date table is filtered return the all measure else the year measure
IF (
not ISCROSSFILTER(vwPBIDate[Fiscal Month Number]),
calculate( [Bud_Sales_Rev_ALL]),
calculate( [Bud_Sales_YEAR])
)
If date table is filtered return the all measure else the year measure
IF (
not ISCROSSFILTER(vwPBIDate[Fiscal Month Number]),
calculate( [Bud_Sales_Rev_ALL]),
calculate( [Bud_Sales_YEAR])
)
Thanks Deku - I did have to change the ISCROSSFILTER to ISCROSSFILTERED but it worked, Thank you very much!
User | Count |
---|---|
75 | |
70 | |
40 | |
30 | |
28 |
User | Count |
---|---|
104 | |
95 | |
51 | |
50 | |
46 |