Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 7 | |
| 7 | |
| 7 |