Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Solved! Go to Solution.
@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 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@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 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 21 | |
| 10 | |
| 7 | |
| 7 |