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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Switch between measures?

I would like to re-create in Power BI a pivot table I've created in Excel. Sample Data - https://drive.google.com/open?id=1TyEioklmd_MUEzkq03NeGZ6TA0BW-_su The metric I am trying to re-create is the "Earned" metric, which is highlighted in the attached workbook. Here is how it works. The switch period is 201706. Prior to the switch period, the formula for the value is Estimated Premium minus Unearned Premium Reserve. In the switch period, the formula for the value is the difference between the cumulative booked premium and the cumulative estimated premium. After the switch period, the formula for the value is equal to the Booked Premium. I figured I could create 3 measures and then switch between them, but I am not having very much luck. Is anyone able to assist? Kind regards, Sergio
1 ACCEPTED SOLUTION
LivioLanzo
Solution Sage
Solution Sage

Based on the results you are showing, the column "Switch Logic" should equal "Switch" for all the records of year 2017. The column "technicalperiodcode" should be of type number and not text

 

Then the following DAX should get you the right results:

 

 

Measure =
SUMX (
    SUMMARIZE (
        Data,
        Data[technicalyear],
        Data[Switch Logic]
    ),
    SWITCH (
        [Switch Logic],
        "Pre-Switch"CALCULATE (
            SUM ( Data[AmountInReportingCurrency] ),
            Data[Level4TransactionTypeDescription] = "Inward Estimated Premium"
        ) - CALCULATE (
                SUM ( Data[AmountInReportingCurrency] ),
                Data[Level4TransactionTypeDescription] = "Inward Unearned Premium Reserve"
            ),
        "Post-Switch"CALCULATE (
            SUM ( Data[AmountInReportingCurrency] ),
            Data[Level4TransactionTypeDescription] = "Inward Booked Premium"
        ),
        "Switch"CALCULATE (
            SUM ( Data[AmountInReportingCurrency] ),
            ALL ( Data ),
            Data[technicalyear] <= EARLIER ( Data[technicalyear] ),
            Data[Level4TransactionTypeDescription] = "Inward Booked Premium"
        ) - CALCULATE (
                SUM ( Data[AmountInReportingCurrency] ),
                ALL ( Data ),
                Data[technicalyear] <= EARLIER ( Data[technicalyear] ),
                Data[Level4TransactionTypeDescription] = "Inward Estimated Premium"
            )
    )
)

 

 


 


Did I answer your question correctly? Mark my answer as a solution!


Proud to be a Datanaut!  

View solution in original post

2 REPLIES 2
LivioLanzo
Solution Sage
Solution Sage

Based on the results you are showing, the column "Switch Logic" should equal "Switch" for all the records of year 2017. The column "technicalperiodcode" should be of type number and not text

 

Then the following DAX should get you the right results:

 

 

Measure =
SUMX (
    SUMMARIZE (
        Data,
        Data[technicalyear],
        Data[Switch Logic]
    ),
    SWITCH (
        [Switch Logic],
        "Pre-Switch"CALCULATE (
            SUM ( Data[AmountInReportingCurrency] ),
            Data[Level4TransactionTypeDescription] = "Inward Estimated Premium"
        ) - CALCULATE (
                SUM ( Data[AmountInReportingCurrency] ),
                Data[Level4TransactionTypeDescription] = "Inward Unearned Premium Reserve"
            ),
        "Post-Switch"CALCULATE (
            SUM ( Data[AmountInReportingCurrency] ),
            Data[Level4TransactionTypeDescription] = "Inward Booked Premium"
        ),
        "Switch"CALCULATE (
            SUM ( Data[AmountInReportingCurrency] ),
            ALL ( Data ),
            Data[technicalyear] <= EARLIER ( Data[technicalyear] ),
            Data[Level4TransactionTypeDescription] = "Inward Booked Premium"
        ) - CALCULATE (
                SUM ( Data[AmountInReportingCurrency] ),
                ALL ( Data ),
                Data[technicalyear] <= EARLIER ( Data[technicalyear] ),
                Data[Level4TransactionTypeDescription] = "Inward Estimated Premium"
            )
    )
)

 

 


 


Did I answer your question correctly? Mark my answer as a solution!


Proud to be a Datanaut!  

Anonymous
Not applicable

This is extremely helpful and did the trick. Thank you @LivioLanzo!

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.