Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
DSwezey
Helper III
Helper III

Custom Column Multiple If Statements

I'm not one for nested IF statements but some help would be nice. 

I have a table with 4 columns (A1-4)

I want to create a custom column that takes the value from the right most column if not null

DSwezey_0-1635522582104.png

So I want to do the following:

IF A4 = null THEN A3 ELSE A4

IF A3 = null THEN A2 ELSE A3

IF A2 = null THEN A1 ELSE A2

 

The end result should look like this:

DSwezey_1-1635522883434.png

 

1 ACCEPTED SOLUTION
BA_Pete
Super User
Super User

Hi @DSwezey ,

 

You can try the following in a new custom column:

 

List.Last(List.RemoveNulls({[A1], [A2], [A3], [A4]}))

 

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

3 REPLIES 3
BA_Pete
Super User
Super User

Hi @DSwezey ,

 

You can try the following in a new custom column:

 

List.Last(List.RemoveNulls({[A1], [A2], [A3], [A4]}))

 

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




This only pulled values from the [A4] column

Hi,

 

Sorry, I forgot to remove nulls. I've updated my original post 🙂



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors