Forum Discussion
dynamic division DAX column
- 3 years ago
I guess this measure is suffisant, but this will not give 2.63 in total
MyMeasure =
DIVIDE(
SUM(exampledataset[DDF components]),SUM(exampledataset[DD1 components]))Did it work ? 👍 A kudos would be appreciated 📢 Mark it as a solution to help spreading knowledge
Hi Simon3
You are supposed to sum up the division per row, to do so create the following Measure
MyMeasure=
SUMX(
ALLSELECTED(MyTable[Discipline]),
DIVIDE(SUM(MyTable[DDF components]),SUM(MyTable[DD1 components]))
)
Did it work ? 👍 A kudos would be appreciated 📢 Mark it as a solution to help spreading knowledge
hi DataVitalizer thanks for the message, I have tried your formula but without luck, the result is not what I expected:
- DataVitalizer3 years agoSuper User
Can you share with me that first table as a data sample so I can use it to verify the fomula again?
- Simon33 years agoFrequent Visitor
Sure, here you go! https://we.tl/t-Bz9gldCOCI
- DataVitalizer3 years agoSuper User
I guess this measure is suffisant, but this will not give 2.63 in total
MyMeasure =
DIVIDE(
SUM(exampledataset[DDF components]),SUM(exampledataset[DD1 components]))Did it work ? 👍 A kudos would be appreciated 📢 Mark it as a solution to help spreading knowledge