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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.