Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
nrj1806
Frequent Visitor

calculate a measure, with multiple conditions, that include static numbers for diff years?

I am trying to create a measure, that must be multiplied by static numbers depending on the year.

This is to be used in a horizontal stacked bar chart with year as legend and this meaure on X axis so that the year total is stacked in front of each other

total Save Money =
SWITCH(
TRUE(),
MAX('Date'[Calendar Year]) = "2022" ,CALCULATE((49/60)*350*sum('QUESTIONAIRES_CLEANED'[QUESTIONNAIRE_COUNT]),'QUESTIONNAIRES'[QUESTIONNAIRES_NAME]="Corporate notary generator EN"),
MAX('Date'[Date]) = "2021" ,CALCULATE((30/60)*350*sum('QUESTIONAIRES_CLEANED'[QUESTIONNAIRE_COUNT]),'SP-QUESTIONNAIRES'[QUESTIONNAIRES_NAME]="Corporate notary generator EN"),
0)
1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @nrj1806 ,

 

Not sure about your data and model, but since you are using the year as the legend, you need to use the same field in the measure to compare.

 

total Save Money = 
SWITCH (
    MAX ( 'Date'[Calendar Year] ),
    2022,
        ( 49 / 60 ) * 350
            * CALCULATE (
                SUM ( 'QUESTIONAIRES_CLEANED'[QUESTIONNAIRE_COUNT] ),
                'QUESTIONNAIRES'[QUESTIONNAIRES_NAME] = "Corporate notary generator EN"
            ),
    2021,
        ( 30 / 60 ) * 350
            * CALCULATE (
                SUM ( 'QUESTIONAIRES_CLEANED'[QUESTIONNAIRE_COUNT] ),
                'SP-QUESTIONNAIRES'[QUESTIONNAIRES_NAME] = "Corporate notary generator EN"
            ),
    0
)

vkkfmsft_0-1654673677316.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-kkf-msft
Community Support
Community Support

Hi @nrj1806 ,

 

Not sure about your data and model, but since you are using the year as the legend, you need to use the same field in the measure to compare.

 

total Save Money = 
SWITCH (
    MAX ( 'Date'[Calendar Year] ),
    2022,
        ( 49 / 60 ) * 350
            * CALCULATE (
                SUM ( 'QUESTIONAIRES_CLEANED'[QUESTIONNAIRE_COUNT] ),
                'QUESTIONNAIRES'[QUESTIONNAIRES_NAME] = "Corporate notary generator EN"
            ),
    2021,
        ( 30 / 60 ) * 350
            * CALCULATE (
                SUM ( 'QUESTIONAIRES_CLEANED'[QUESTIONNAIRE_COUNT] ),
                'SP-QUESTIONNAIRES'[QUESTIONNAIRES_NAME] = "Corporate notary generator EN"
            ),
    0
)

vkkfmsft_0-1654673677316.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

This worked! i realised the format of my formula wasnt correct. Thank you!

lbendlin
Super User
Super User

Please provide sanitized sample data that fully covers your issue. If you paste the data into a table in your post or use one of the file services it will be easier to assist you. I cannot use screenshots of your source data.

Please show the expected outcome based on the sample data you provided. Screenshots of the expected outcome are ok.

https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.