Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
66 | |
60 | |
47 | |
33 | |
32 |
User | Count |
---|---|
86 | |
75 | |
56 | |
50 | |
45 |