cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
aharris15
Helper II
Helper II

Filling null cells from a different column

I'm new to Power Query and PowerBI and feel like this should be relatively simple but I haen't figured it out quite yet.

 

I have an incomplete column of data that has some null cells. I want to fill the null cells in Column A with the values in Column B, but only the null cells. If the cells in Column A have a value, I want to keep those values. And furthermore, if Column B happens to be null as well, how do you get it to get the value from Column C?

 

Update: I've tried setting up a conditional column as shown below but I don't think its recognizing the null values because it just returns the column I have setup in the Else condition and I still have the nulls.

 

PowerBI Capture.JPG

1 ACCEPTED SOLUTION
gpoggi
Responsive Resident
Responsive Resident

Yep, you are using space " " and blank doesn't have spaces, so try to compare to nothing between quotes "" it should work.

 

Any question, just let me know.

 

Regards,

 

Gian Carlo Poggi

View solution in original post

4 REPLIES 4
gpoggi
Responsive Resident
Responsive Resident

Hi aharris15, your conditional column setup seems to be ok, and other way to get the Columns C value when Column B is null is creating a Custom Column with this code:

if

  [Column A] = null

then

  if

    [Column B] = null

  then

    [Column C]

  else

    [Column B]

else

  [Column A]


This should work, but one question regarding your conditional column, it should work as it is, so maybe the problem is about your nulls, did you confirm that Column A contains nulls instead of (blank) values? if you did, Could you send a sample of your data so we can help you to figure it out what is going on?

 

Regards,

 

Gian Carlo Poggi

So my cells are actually blank - they do not have null in them. I tried putting " " instead of null but still no luck. Is there something else I need to put there instead?

gpoggi
Responsive Resident
Responsive Resident

Yep, you are using space " " and blank doesn't have spaces, so try to compare to nothing between quotes "" it should work.

 

Any question, just let me know.

 

Regards,

 

Gian Carlo Poggi

I was able to get that to work. Thank you!

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors