Forum Discussion
yaman123
5 years agoPost Partisan
New Function Values
Hi, Is it possible to create two new functions (highlighted in yellow) - H total and L Total. H Total is a sum of H Staff and H Production L Total is a sum of L Staff and L Production ...
Fowmy
5 years agoSuper User
yaman123
The two new measures that you need.
H Total =
SUMX(
VALUES(Table[Function]),
INT(UPPER(LEFT(Table[Function],1)) = "H") * [Headcount]
)
L Total =
SUMX(
VALUES(Table[Function]),
INT(UPPER(LEFT(Table[Function],1)) = "L") * [Headcount]
)
yaman123
5 years agoPost Partisan
Can a new column be created which will show all functions instead of two new measures. I would like the output to be like the example i attached above?