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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hello Community!
I have a table with various "ProjectIDs", "Project names" and "Project Owners".
Same "Project Names" occur often in the table, but only 1 row is filled with a "Project Owner".
Now I want to copy cells that are filled with the "project owner" Name into the according "Project Owner" Cells that are blank.
Thanks for the help!!
| Project_ID | Project_Name | Project_Owner |
| 1 | Hedon | |
| 2 | Hedon | |
| 3 | Hedon | Owner_A |
| 4 | Beton | |
| 5 | Beton | Owner_B |
| 6 | Gale | |
| 7 | Gale | Owner_C |
| 8 | Gale |
Solved! Go to Solution.
@KevBI , Sorry you need to use project name
Project_Owner new=
if(isblank([Project_Owner]), maxx(filter(Table, [Project_Name] = earlier([Project_Name]) ) , [Project_Owner] ),[Project_Owner] )
@KevBI , new column in DAX
Project_Owner new=
if(isblank([Project_Owner]), maxx(filter(Table, [Project_ID] = earlier([Project_ID]) ) , [Project_Owner] ),[Project_Owner] )
this doesn't work sadly, maybe I didn't clarify my problem enough.
If I look at the project Hedon, i want the new column to display Project Owner A in every column.
With your solution it copys not only the filled project owners, but also the blank ones.
@KevBI , Sorry you need to use project name
Project_Owner new=
if(isblank([Project_Owner]), maxx(filter(Table, [Project_Name] = earlier([Project_Name]) ) , [Project_Owner] ),[Project_Owner] )
I found an error, maybe you can help me with that again!
So when the count of rows in Project_Owner that are blank is equal to the count of rows in Project_Owner with a name in it, it copys not only the filled project owners, but also the blank ones.
Thank you!
This works perfectly, thank you!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 112 | |
| 109 | |
| 40 | |
| 33 | |
| 27 |