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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Tarunika
Helper II
Helper II

Need some idea to add a message when a value is selected from a filter

Hi all,

 

Tarunika_0-1650353862557.png

This is the report which iam working on so here now i need a help 

 

To calculate the standard deviation and mean we are using different algos so when we select a value from a week end date filter i want a message to be displayed as for this week i.e 14th feb Algorithm LODA is used so how can i add that text please help me

3 REPLIES 3
Anonymous
Not applicable

Hi @Tarunika ,

 

Assum "Algorithm LODA" comes from a column called [algos] and is related to [week end date].

Then you could create a measure like below add it to card visual.

measure = 
var _week end date = selectedvalue('table'[week end date])
var _algos = calculate(max('table'[algos]),filter(allselected('table'),'table'[week end date] = _week end date))
return
_week end date&" "&_algos

If I misunderstood your meaning please show some sample data and expected result to us.

 

Best Regards,

Jay

philouduv
Resolver III
Resolver III

Hello @Tarunika , 

I would advice you to create a textbox with a dynamic value base on your filter:

philouduv_0-1650355334544.png

philouduv_1-1650355361171.png


To do so insert textbox then click on + value and select the field thie value should be based on.

 

philouduv_2-1650355502340.png

 

Best regards,

The Requirement is when i selected the value 14-02-2022 from the week start date i want the messase  From 14-20-2022 Algorithm  LODA is used for the events" to be displayed in the chart or anywhere else in the report how can i achieve this please help me i dont have any seperate colums for algos in my data 👉"Sample Report" 

 

Tarunika_0-1651140914865.png

 

Thanks 

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors