Forum Discussion
_bs_
1 year agoAdvocate I
Dax formula help
I have chart visual which shows Target value by month and user. The desired outcome should be a value of 10 per month per user. However it returns 50 due to there being 5 users in the dataset, so i...
- 1 year ago
If your target will change depending on the month and you already have that captured in your data (assuming 'Target'[Target] is the value) you can also use MIN or MAX instead of SUM.
_bs_
1 year agoAdvocate I
It's just a coincidence that its always 10. The target value can be different each month which will get update in the source table.
Syk
1 year agoResident Rockstar
If your target will change depending on the month and you already have that captured in your data (assuming 'Target'[Target] is the value) you can also use MIN or MAX instead of SUM.
- _bs_1 year agoAdvocate I
Thank you. Changing it to MIN or MAX gives the desired output, but I don't understand why it works.
I need to see if how it behaves with different source values.