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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Alexandra_B
Helper III
Helper III

Baseline Dax - extract data for each month

Hello.
I have a formula to calculate the baseline per month, I cannot figure out how to do it for each month, every month since July 21.

The formula is : Baseline = number + number * (monthly HDD + monthly CDD)

 

Any advice is welcomed.

 

Thank you.

baseline.JPG

 

3 REPLIES 3
tamerj1
Super User
Super User

@Alexandra_B 
Please try

=
VAR X = 10 --Insert correct value
VAR Y = 1.3 --Insert correctvalue
RETURN
    SUMX (
        VALUES ( CCD_18C[Month] ),
        --Use the column that you will be slicing by it
        VAR CurrentMonth = CCD_18C[Month]
        VAR CCDValue =
            CALCULATE ( SUM ( CCD_18C[CCD 18] ) )
        VAR HDDValue =
            CALCULATE ( SUM ( HDD_15C[HDD 15] ), HDD_15C[HMonth] = CurrentMonth )
        RETURN
            X + Y * ( CCDValue + HDDValue )
    )
tamerj1
Super User
Super User

Hi @Alexandra_B 

what is the relationship between the two tables? How does your visual look like? What are you slicing by?

I haven`t set a relationship. I just downloaded the data, two separate tables , they don`t interact with each other. I need to set a Dax to calculate that formula monthly. and then create a graph to show the values.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.