Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I'm trying to get today's value (a point or vertical line) to appear on a line graph if that's possble?
I have a simple table of values
and want to get the value that today is closest to e.g. TODAY = 10/12/2021 therefore 10/10/2021 value 24
PBIX attached
Solved! Go to Solution.
Hi, @Anonymous
I am back. The code in my sample is no problem. But you modified it wrong when you used it.
I used your sample, and modify it.
Try this:
Measure5 =
VAR a =
MAXX ( FILTER ( ALL ( 'Table' ), [Date] <= TODAY () ), [Date] )
VAR b =
MINX ( FILTER ( ALL ( 'Table' ), [Date] >= TODAY () ), [Date] )
VAR c =
IF ( TODAY () - a >= b - TODAY (), b, a )
RETURN
IF (
SELECTEDVALUE ( 'Table'[Date] ) = c,
SELECTEDVALUE ( ( 'Table'[Value] ), BLANK () )
)
Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Community Support Team _ Janey
Hi, @Anonymous
According to your description, I think you can create a measure to display your desired result.
Like this:
Measure5 =
VAR a =
MAXX ( FILTER ( ALL ( 'Table 3' ), [Column1] <= TODAY () ), [Column1] )
VAR b =
MINX ( FILTER ( ALL ( 'Table 3' ), [Column1] >= TODAY () ), [Column1] )
VAR c =
IF ( TODAY () - a >= b - TODAY (), b, a )
RETURN
IF (
SELECTEDVALUE ( 'Table 3'[Column1] ) = c,
MAX ( 'Table 3'[Column2] ),
BLANK ()
)
Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please feel free to ask me.
Best Regards,
Community Support Team _ Janey
Hi,
Thanks for this.
I've used the following formula to attempt your solution:
Measure5 =
VAR a =
MAXX ( FILTER ( ALL ( 'Table' ), [Value] <= TODAY () ), [Value] )
VAR b =
MINX ( FILTER ( ALL ( 'Table' ), [Value] >= TODAY () ), [Value] )
VAR c =
IF ( TODAY () - a >= b - TODAY (), b, a )
RETURN
IF (
SELECTEDVALUE ( 'Table'[Value] ) = c,
MAX ( 'Table'[Value] ),
BLANK ()
)
but still blank values. Any advice on this would be greatly appreciated.
Hi, @Anonymous
I am back. The code in my sample is no problem. But you modified it wrong when you used it.
I used your sample, and modify it.
Try this:
Measure5 =
VAR a =
MAXX ( FILTER ( ALL ( 'Table' ), [Date] <= TODAY () ), [Date] )
VAR b =
MINX ( FILTER ( ALL ( 'Table' ), [Date] >= TODAY () ), [Date] )
VAR c =
IF ( TODAY () - a >= b - TODAY (), b, a )
RETURN
IF (
SELECTEDVALUE ( 'Table'[Date] ) = c,
SELECTEDVALUE ( ( 'Table'[Value] ), BLANK () )
)
Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Community Support Team _ Janey
@Anonymous , Create a second measure and plot that
measure 2= calculate(sum(Table[Value]), filter(Table, Table[Date]=Today())
or create bar and do condition formatting using this measure
if(max(Table[date]= Today(), "Red","blue")
or
if(max(Table[date]= Today(), "Red", blank() )
use that in conditional formatting using field value option and then convert bar to line
How to do conditional formatting by measure and apply it on pie?: https://youtu.be/RqBb5eBf_I4
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
71 | |
55 | |
37 | |
31 |
User | Count |
---|---|
87 | |
62 | |
61 | |
49 | |
45 |