Forum Discussion
Anonymous
5 years agoNot 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 (
CALCULA...
- 5 years ago
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 š
Fowmy
5 years agoSuper 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 š