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.
Hi all,
I am trying to make a new column in my table that needs to fill blank values with the first value of a different column. Is there a Query that can do this?
Table 1:
Column A | Column B | Column c |
A1 | B1 | |
A2 | B2 | C2 |
A3 | B3 | C3 |
A4 | B4 | |
A5 | B5 | C5 |
Table 2:
Column 1 | Column 2 |
1.1 | 2.1 |
1.2 | 2.2 |
1.3 | 2.3 |
Table 1 expectation:
Column A | Column B | Column c |
A1 | B1 | 2.1 |
A2 | B2 | C2 |
A3 | B3 | C3 |
A4 | B4 | 2.1 |
A5 | B5 | C5 |
Or:
Column A | Column B | Column C | Column D |
A1 | B1 | 2.1 | |
A2 | B2 | C2 | C2 |
A3 | B3 | C3 | C3 |
A4 | B4 | 2.1 | |
A5 | B5 | C5 | C5 |
Can anyone help me with this situation? I am trying to DAX this.
Thanks!
Solved! Go to Solution.
@Anonymous , I do not see any relation
a new column in table 1
Column D = if(isblank([Column c]), Min(Table2[Column 2]), [Column C])
Thanks! This worked
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.