Forum Discussion
Amir851
Helper I
7 years agoDynamic date vertical reference line or a dot in a line chart
How Can I add a dynamic or constant date vertical reference line in a line chart , where x axis will be date value, y will be actual component value and after that date reference line, color of that ...
- 7 years ago
hi, Amir851
A vertical reference line is not available now.
To work around this requirement, you can try to use a combination chart.
- Create a "line and stacked column chart"
- Put column [date] into shared axis and put [values] into line values.
- Create a measure like this, put this measure into column values.
Measures can be:
Measure 2 = IF(SELECTEDVALUE('Table'[Date])=TODAY()-15,1)Result;
Best Regards,
Lin
v-lili6-msft
Community Support
7 years agohi, Amir851
A vertical reference line is not available now.
To work around this requirement, you can try to use a combination chart.
- Create a "line and stacked column chart"
- Put column [date] into shared axis and put [values] into line values.
- Create a measure like this, put this measure into column values.
Measures can be:
Measure 2 =
IF(SELECTEDVALUE('Table'[Date])=TODAY()-15,1)
Result;
Best Regards,
Lin
- Anonymous6 years agoNot applicable
hello, do you mind elaborating on what is the -15 means in your measure ?and also what 1 refer to.
IF(SELECTEDVALUE('Table'[Date])=TODAY()-15,1)