Forum Discussion
Excel to DAX: converting SUMIFS structured references
- 4 years ago
Hi,
According to what I can see, if you just create a table on your report with mast[PHPSTF] on the lines,
and with mast[PHTUTS] in values, you should have the total for each value (10,11...).
Otherwise in DAX it will look like :
CALCULATE( SUM(mast[PHTUTS]),mast[PHPSTF]=10) or
CALCULATE( SUM(mast[PHTUTS]),mast[PHPSTF]="10") depending on type (numeric or text).
or could be :
CALCULATE( SUM(mast[PHTUTS]),mast[PHPSTF] IN {10,11})
Hope it helps
Hi,
According to what I can see, if you just create a table on your report with mast[PHPSTF] on the lines,
and with mast[PHTUTS] in values, you should have the total for each value (10,11...).
Otherwise in DAX it will look like :
CALCULATE( SUM(mast[PHTUTS]),mast[PHPSTF]=10) or
CALCULATE( SUM(mast[PHTUTS]),mast[PHPSTF]="10") depending on type (numeric or text).
or could be :
CALCULATE( SUM(mast[PHTUTS]),mast[PHPSTF] IN {10,11})
Hope it helps