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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi Community,
My data set has data quality issues. In the follwoing sample data set, how can I replace end_date 1/01/1900 with end_date from the row where E_key ,Client_key & program are the same but val = 3 & comment is not null:
Many thanks!
Solved! Go to Solution.
@Anonymous , a new column
New column =
var _1 = maxx(filter(Table, [E_key] = earlier([E_key) && [End_date] >date(1900,01,01) ), [End Date] )
return
if( [End_date] = date(1900,01,01), _1, [End_date])
@Anonymous , a new column
New column =
var _1 = maxx(filter(Table, [E_key] = earlier([E_key) && [End_date] >date(1900,01,01) ), [End Date] )
return
if( [End_date] = date(1900,01,01), _1, [End_date])
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 36 | |
| 34 | |
| 31 | |
| 27 |
| User | Count |
|---|---|
| 136 | |
| 103 | |
| 66 | |
| 65 | |
| 56 |