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
bilalkhokar73
Helper IV
Helper IV

To Display value in card based on slicer selection but from another table

To Display value in card based on slicer selection but from another table

I Have created one slicer of table customer , if I select a customer name then i want to show that customer last sales based on selection of that slicer

Lastsalesdone=lastdate(transaction[date]) this formual is working

DisplayValue= IF(ISFILTERED(Customer[Sitename]),FIRSTNONBLANK(,1),"Please select Site name")

Now problem in display valu formual is after firstnonblank i am not getting measure Displayvlaue there so please help me hwo to do 

 

Display value measure is from transcation table

and sitename is from customer table   @tyemy @amitchandak @v-janeyg-msft 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@bilalkhokar73, Try like

DisplayValue=
var _max = maxx(allselected(transaction) ,transaction[date])
var _customer= calculate(FIRSTNONBLANK(Table[Csutomer],1), filter(transaction,transaction[date] =_max))
return
IF(ISFILTERED(Customer[Sitename]),_customer,"Please select Site name")

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

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@bilalkhokar73, Try like

DisplayValue=
var _max = maxx(allselected(transaction) ,transaction[date])
var _customer= calculate(FIRSTNONBLANK(Table[Csutomer],1), filter(transaction,transaction[date] =_max))
return
IF(ISFILTERED(Customer[Sitename]),_customer,"Please select Site name")

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

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