Forum Discussion
Anonymous
9 years agoNot applicable
Auto select previous months
Hi guys, I want to know if it is possible select one month, and the others selected automatically, like a MTD (I suppose). I have an alternative, using quarters checkbox, but, what i really want ...
- 9 years ago
Anonymous
Try this:
Create a table with Months (1....12) Use this as Slicer. Don't related with your data table.
Create a Measure:
ValuesChart = VAR MAXMONTH = VALUES ( Months[Month] ) RETURN IF ( VALUES ( Table1[Month] ) <= MAXMONTH, CALCULATE ( SUM ( Table1[Values] ) ), BLANK () )Use this measure in your chart.
Vvelarde
9 years agoCommunity Champion
Anonymous
hi, you have
ValuesChart =
VAR MAXMONTH =
VALUES ( Tabela1[Month] )
RETURN
IF (
VALUES ( DimensaoData[Month] ) <= MAXMONTH,
***YOUR COLUMN TO SHOW AS VALUE IN THE CHART***),
BLANK ()
)
In the chart Use DimensaoData for Axis and Legend.
Note: In you your DimensaoData the months are numeric. (1...12). If you don't have please add this column
Anonymous
9 years agoNot applicable
- Vvelarde9 years agoCommunity Champion
what is the message in ver Detalhes