The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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))
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
36 | |
14 | |
12 | |
8 | |
7 |