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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

How to show range of month as a tooltip?

I have a report which consists of trade data of the country until 2020 of May with a continuous monthly update. Now I want to show that current data consists of data from January-May, then if new data comes for June, it should change to January-June . How can I do that? 

4 REPLIES 4
v-alq-msft
Community Support
Community Support

Hi, @Anonymous 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

Table:

b1.png

 

You may create a new report page called 'Tooltip' and then set 'Tooltip' as on to mark it as a tooltip.

b2.png

 

Then you can go to 'Fields' and set 'Keep all filters' off. And you need to make the visual selected which you want to apply the tooltip to, set 'Tooptip' on.

 

b3.png

 

b5.png

 

 

Result:

b4.png

 

For further information, you may also refer to the document .

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Anonymous , Try like a measure like this in tool tip

 

measure =

 
var _min = format(minx(allselected(Date),Date[Date]),"MMM-YYYY")
var _max = format(maxx(allselected(Date),Date[Date]),"MMM-YYYY")

 

return

_min & " "& _max

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hello, @amitchandak I tried your method. The method is showing me a date range like January 2011 and June 2020. But I want to something like if I press 2011 year data it must show me January-December because the data till 2019 is full and if I press to the 2020 year data it should show me January-June because of the data are available until June for the 2020 year. 

Anonymous
Not applicable

@amitchandak I tried your reply. But I do not know what is a problem,

Безымянный.png

 

@amitchandak 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors