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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
vennajx
New Member

Previous Value when the data is NULL for current selection

Hello,

I have just started with Power BI and I have a scenario but could not figure out the solution .Below is sample data.


When a user select any 'Start Date' in 2019 from the slicer, instead of showing blank for Product A it should show previous date avaliable price , in this case '50'. 

I have tried Earlier() and ISBLANK() to get this. @amitchandak @Greg_Deckler Any inputs to get this.

ProductStart DateEnd DatePriceApproved Date
A1/1/201811/11/2020506/11/2017
A11/12/20203/31/2021606/11/2017
A4/1/2021-706/11/2017
B1/1/2019-10012/5/2018
2 REPLIES 2
amitchandak
Super User
Super User

@vennajx , Try a measure like

 


measure =
var _1 = calculate(max(Table[Start_date]), allexcept(Table, Table[product]))
var _2 = sum(Table[price])
return
sumx(values(Table[Product]), if (isblank(_2) ,calculate(_2, filter(all(Table), Table[Date] =_1 )), _2))

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

@amitchandak I have tried this but unfortunately this doesn't help to resolve

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.