Forum Discussion
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 it does 10 Target value x 5 users = 50.
The DAX formula is:
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.
4 Replies
- SykResident Rockstar
If your target will always be 10, you can just have your DAX be: Target=10
- _bs_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.
- SykResident 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.