Forum Discussion
_bs_
Advocate I
1 year agoDax 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.
Syk
Resident Rockstar
1 year agoIf your target will always be 10, you can just have your DAX be: Target=10
- _bs_1 year ago
Advocate 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.
- Syk1 year ago
Resident 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 ago
Advocate 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.