Forum Discussion
Dax Measure
- 5 years ago
Greg_Deckler , Thank you for the response.
How can I achieve this one. do we have any other way to fix this?
All I have is list of projects which are having different dates with different values in Current year. I need to sum all the values. I have to sum it and show with the Minimum date in the Clustered column visual.
For example
I have this Table
I created this below table using mesaures
My aim is to provide Clustred column chart
Dates in X axis and Values in Y Axis and Projects in Column.
Please any help, any other way to acheive this?
- 5 years ago
Sudhavi_84 Well, you could create a column like this perhaps:
Earliest Date Column = MINX(FILTER('Table',[Project]=EARLIER('Table'[Project])),[Date])
Sudhavi_84 You cannot use a measure in an Axis.
- Sudhavi_845 years agoHelper V
Greg_Deckler , Thank you for the response.
How can I achieve this one. do we have any other way to fix this?
All I have is list of projects which are having different dates with different values in Current year. I need to sum all the values. I have to sum it and show with the Minimum date in the Clustered column visual.
For example
I have this Table
I created this below table using mesaures
My aim is to provide Clustred column chart
Dates in X axis and Values in Y Axis and Projects in Column.
Please any help, any other way to acheive this?
- PaulDBrown5 years agoCommunity Champion
Sudhavi_84
Is there a particular reason you want to use the minimum date showing the total value for each project?- Sudhavi_845 years agoHelper V
Not really but that was the requirement:-)
- Greg_Deckler5 years agoCommunity Champion
Sudhavi_84 Well, you could create a column like this perhaps:
Earliest Date Column = MINX(FILTER('Table',[Project]=EARLIER('Table'[Project])),[Date])- Sudhavi_845 years agoHelper V
Thanls Greg_Deckler , I will try this and will let you know.