Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Niiru1
Helper V
Helper V

Get closest value to today's date on line bar chart

I currently have a line bar chart showing today's date:

Niiru1_0-1634115376055.png

Using this measure with Date dimension and fact table:

Today maxx = 

VAR __released = MAXX( ALLSELECTED( 'Calendar'[Date] ), 'Table'[sum of values] )
VAR __disbursements = MAXX( ALLSELECTED( 'Calendar'[Date] ), 'Table'[sum of values] )

RETURN
IF(
MAX( 'Calendar'[Date] ) = TODAY(),
MAX( __released, __disbursements )
)

 

However I'm trying to return the actual value that occurs today in the tooltip (as you can see my tooltip states that it's blank because there is no value for today.

 

Niiru1_1-1634115453391.png

 

Is there a way to return the closest value with a RELATED measure or something?

 

Using pbix here:

https://www.dropbox.com/s/h9921jltwa7q44q/Set%20Limit%20of%20Future%20Appointment%20within%201%20Mon...

 

Thanks in advance.

1 ACCEPTED SOLUTION
v-jayw-msft
Community Support
Community Support

Hi @Niiru1 ,

 

Check the formula.

max_not_blank = 
var max_not_blank_date = CALCULATE(MAX('Table'[Date]),FILTER(ALL('Table'),'Table'[Date]<=TODAY()&&[sum of values]<>BLANK()))
var max_not_blank = SUMX(FILTER(ALL('Table'),'Table'[Date]=max_not_blank_date),[sum of values])
return
max_not_blank

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

5 REPLIES 5
v-jayw-msft
Community Support
Community Support

Hi @Niiru1 ,

 

Check the formula.

max_not_blank = 
var max_not_blank_date = CALCULATE(MAX('Table'[Date]),FILTER(ALL('Table'),'Table'[Date]<=TODAY()&&[sum of values]<>BLANK()))
var max_not_blank = SUMX(FILTER(ALL('Table'),'Table'[Date]=max_not_blank_date),[sum of values])
return
max_not_blank

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

This is perfect! Thanks

 

One last question (if it can't be done then dont worry about it) but is there a way to have the [max_not_blank] measure return as one point/line on the date axis (like images above)

 

This is what I'm getting, the answer is correct but just trying to get it into a daily point / line

Niiru1_0-1634549036991.png

 

Many thanks again

 

Hi @Niiru1 ,

 

Not quite understand. Isn't it a line now? You are using line chart, so I don't think it could be shown as points (Unless change the line color to white and show the marker as a different color). Perhaps Line and Column Chart?

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

Apologies I meant a vertical line not a horizontal line, this is what I have based on your recommendation.

Niiru1_0-1634551760337.png

 

I'll continue to play with the formatting to see if I can get closer to the single point for today value.

amitchandak
Super User
Super User

@Niiru1 , Based on what I got, You need to create a measure like

Today maxx =
VAR _max = MAXX( filter(ALLSELECTED( 'Calendar'[Date] ),'Calendar'[Date] <=Today())
RETURN
calculate('Table'[sum of values], filter(ALLSELECTED( 'Calendar'[Date] ),'Calendar'[Date] =_max))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors