Forum Discussion
coryan
4 years agoNew Member
Last date
Hi everyone, I am trying to get the distribution of sales for the last date on various products. But I only want from the max date, not from the last of each column. For example: Date ...
- 4 years ago
Hi, coryan
Please try the following methods.
Measure = IF(SELECTEDVALUE('Table'[Date ])=CALCULATE(MAX('Table'[Date ]),ALL('Table')),1,0)Put the measure into the filter of the bar chart and set it equal to 1.
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-zhangti
4 years agoCommunity Support
Hi, coryan
Please try the following methods.
Measure = IF(SELECTEDVALUE('Table'[Date ])=CALCULATE(MAX('Table'[Date ]),ALL('Table')),1,0)
Put the measure into the filter of the bar chart and set it equal to 1.
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.