Forum Discussion
Anonymous
3 years agoNot applicable
Dax Calculation
Hi, I am having trouble writing the calculation below and keep running into errors. (SUM [OH TTL U RTL] WHERE [J RETAIL FH FIRST/FURTHER] = "FIRST" OR "FURTHER")*[OH TTL AUC].
- 3 years ago
Anonymous
Not sure if I properly understand the requirement. Is something like:
=
SUMX (
FILTER ( 'Table', 'Table'[J RETAIL FH FIRST/FURTHER] IN { "FIRST", "FURTHER" } ),
[OH TTL U RTL] * [OH TTL AUC]
)
tamerj1
3 years agoCommunity Champion
Hi Anonymous
are you trying to create a measure or a calculated column?
- Anonymous3 years agoNot applicable
A measure
- tamerj13 years agoCommunity Champion
Anonymous
Sorry but you mean to say
(SUM [OH TTL U RTL] WHERE [J RETAIL FH FIRST/FURTHER] = "FIRST" OR "FURTHER")*SUM([OH TTL AUC]).
- Anonymous3 years agoNot applicable
I am looking for how to write that in dax. That is not the calculation I am using.