Forum Discussion
Scatter graph
- 2 years ago
If you use a Line and Stacked column Chart with a measure like this:
The DAX removes any items that happen on or before this month i.e keep future items only:
Total remaining =CALCULATE([Your Measure] --Measure to change filters,ALLSELECTED(TableToUnfilter) --Remove all filters on table w/ date,Table[DateColumn] > MAX(Table[DateColumn]) --All sales after current, Year(Table[DateColumn]) = YEAR(Max(Table[DateColumn]])--Same year))+0 --Add 0 to keep line continuous, set line to stepped or smoothWe have a free video series on DAX that might help!
Hi Danielwood ,
Do you have a screenshot of what you want it to look like?
At I guess you want to add a Constant Line under the analytics option in Visualizations tab.
This lets you reference a measure, on these you can remove the month filter:
The measure would look something like this:
Let me know if this was what you had in mind.
 something like this ideally
- SamWiseOwl2 years agoSuper User
If you use a Line and Stacked column Chart with a measure like this:
The DAX removes any items that happen on or before this month i.e keep future items only:
Total remaining =CALCULATE([Your Measure] --Measure to change filters,ALLSELECTED(TableToUnfilter) --Remove all filters on table w/ date,Table[DateColumn] > MAX(Table[DateColumn]) --All sales after current, Year(Table[DateColumn]) = YEAR(Max(Table[DateColumn]])--Same year))+0 --Add 0 to keep line continuous, set line to stepped or smoothWe have a free video series on DAX that might help!