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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
tobiasmcbride
Helper III
Helper III

Calculating variance

Hi,

 

I have some revenue data and am struggling to calculate the variance of this. The data is formatted as below:

 

ForecastTypeQ1Q2Q3Q4
FY19 BudgetTotal$$$$$$$$$
FY19 Estimate 1Total$$$$$$$$
FY19 Estimate 2Total$$$$$$$$$$$
FY19 Estimate 3Total$$$$$$$$

 

I want to be able to calculate the variance between any of the values in that table across the quarters against the FY19 Budget (i.e. be able to visualise and then conditionally format the variance between FY19 Estimate 1 and Budget, Estimate 2 and Budget and Estimate 3 and Budget (But also have ability to change it to be FY19 Estimate 3 against Estimate 1).

 

What is the best way to do this? Any help much appreciated.

1 ACCEPTED SOLUTION
v-lionel-msft
Community Support
Community Support

Hi @tobiasmcbride ,

 

First, add a [index] column in Edit Queries;

Second, create a measures for Q1, Q2, Q3:

Measure for Q1, Other similar:

variance _Q1 = 
VAR x =
CALCULATE(
    MAX(Sheet2[Q1]),
    FILTER(
        Sheet2,
        Sheet2[Index] = MIN(Sheet2[Index])
    )
)
VAR y = 
CALCULATE(
    MAX(Sheet2[Q1]),
    FILTER(
        Sheet2,
        Sheet2[Index] = MAX(Sheet2[Index])
    )
)
RETURN
DIVIDE(
    x-y,
    y
)

y14.PNG

 

Best regards,
Lionel Chen

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

2 REPLIES 2
v-lionel-msft
Community Support
Community Support

Hi @tobiasmcbride ,

 

First, add a [index] column in Edit Queries;

Second, create a measures for Q1, Q2, Q3:

Measure for Q1, Other similar:

variance _Q1 = 
VAR x =
CALCULATE(
    MAX(Sheet2[Q1]),
    FILTER(
        Sheet2,
        Sheet2[Index] = MIN(Sheet2[Index])
    )
)
VAR y = 
CALCULATE(
    MAX(Sheet2[Q1]),
    FILTER(
        Sheet2,
        Sheet2[Index] = MAX(Sheet2[Index])
    )
)
RETURN
DIVIDE(
    x-y,
    y
)

y14.PNG

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

With the help of slicer/s you have control the calculation. Please find example

https://community.powerbi.com/t5/Desktop/Slicer-MTD-QTD-YTD-to-filter-dates-using-the-slicer/td-p/50...

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.