Forum Discussion
Min and Max Values in Chart Graph per month
- 4 years ago
Anonymous As I am not aware of your dataset. I assume that must be a Date Column and based on it we will calculate the MIN value month wise.
MIN MEASURE = CALCULATE(MIN(TblName[NumericColumn]),ALLEXCEPT(TblName,MONTH(TblName[DateColumn])))
Likewise, create for MAX value month wise.
Anonymous You can your Min Max calculation funtion (measure) under fx section.
Hi, thanks again! 🙂
Thats what i did in the screenshot of my reply above. Unfortunately that´ll only give me a constant min-value across all months. I would need a function/measure that tracks the min-value for every single month of my dataset.
- Tahreem244 years ago
Super User
Anonymous As I am not aware of your dataset. I assume that must be a Date Column and based on it we will calculate the MIN value month wise.
MIN MEASURE = CALCULATE(MIN(TblName[NumericColumn]),ALLEXCEPT(TblName,MONTH(TblName[DateColumn])))
Likewise, create for MAX value month wise.
- Anonymous4 years agoNot applicable
Thanks a lot my G!
Im going to give it a try in a bit. 🙂
- peffany3 years agoFrequent Visitor
I know its been a while but did you end up finding the solution to this problem? I'm currently trying to do the same thing as you.