Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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.
Product | Start Date | End Date | Price | Approved Date |
A | 1/1/2018 | 11/11/2020 | 50 | 6/11/2017 |
A | 11/12/2020 | 3/31/2021 | 60 | 6/11/2017 |
A | 4/1/2021 | - | 70 | 6/11/2017 |
B | 1/1/2019 | - | 100 | 12/5/2018 |
@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))
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
7 | |
5 | |
4 | |
3 |
User | Count |
---|---|
12 | |
12 | |
10 | |
9 | |
9 |