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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Add two values from a calculated inline DAX table

Hello,

 

I am struggling to add two values 🤔

 

 

 

EVALUATE
VAR CRT_DATE =
    DATEVALUE ( "30/10/2020" )
VAR HOURS_SLA = 36
VAR CALC_TBL=
    FILTER(
        ADDCOLUMNS (
            CALCULATETABLE ( Slots, Slots[DAY] >= CRT_DATE ),
            "RUNNING HOURS",
                VAR LIN_DATE = Slots[DAY]
                RETURN
                    CALCULATE (
                        SUM ( Slots[HOURS] ),
                        Slots[DAY] >= CRT_DATE,
                        Slots[DAY] <= LIN_DATE
                    )
        ),
        [RUNNING HOURS] >= HOURS_SLA
    )
VAR CALC_TBL_TOP1=TOPN(1,CALC_TBL)
RETURN CALC_TBL_TOP1[DAY]+CALC_TBL_TOP1[END_HOUR]

 

 

 

I think the hardest part is done, now i just need to sum up column [DAY] and [END_HOUR]

 

I have tried to use SUM, SUMX, VALUE, VALUES, SELECTCOLUMNS. I actually just solved it in dax studio after writing half of the post, so I will post anyway with my solution.

 

 

 

 

VAR DIA= SELECTCOLUMNS(CALC_TBL_TOP1,"DAY",[DAY])
VAR HORA= SELECTCOLUMNS(CALC_TBL_TOP1,"HOUR",[END_HOUR])
RETURN {DIA+HORA}

 

 

 

Is there a better way than selectcolumns?

 

Thanks

João

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@Anonymous 

 

You can add up the values using an iterator like sum from a virtual table.

 

VAR TOTAL = SUMX(CALC_TBL_TOP1, [DAY]) + SUMX(CALC_TBL_TOP1,[END_HOUR])

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

1 REPLY 1
Fowmy
Super User
Super User

@Anonymous 

 

You can add up the values using an iterator like sum from a virtual table.

 

VAR TOTAL = SUMX(CALC_TBL_TOP1, [DAY]) + SUMX(CALC_TBL_TOP1,[END_HOUR])

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.