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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Conditional Column based on values of other columns

So I have three columns of data called 'Page 1' 'Page 2' and 'Page 3'.

I want a Custom column to first look at Page 1 and if it doesn't contain the word "Test", Custom column should populate with the contents of Page 1.

If it does contain the word "Test", it should then look at Page 2.

If Page 2 is not blank then Custom column should populate with the content of Page 2.

If it is blank then Custom column should populate with the content of Page 3. 

 

I have used the code below, but it's not working properly see attached where in red my logic isn't being applied.  = 

 

Table.AddColumn(#"Filtered/", "Custom", each if [Page 1] = "Test" then [Page 2] else if [Page 2] = null then [Page 3] else [Page 1])

Sample.png

1 ACCEPTED SOLUTION
Cmcmahan
Resident Rockstar
Resident Rockstar

 

Looks like your IF statement is evaluating in an order you aren't expecting.  If Page 1 is not equal to test, the next logic it tries to apply is the if Page 2 = null logic.

 

Try this instead:

Table.AddColumn(#"Filtered/", "Custom", each 
if [Page 1] = "Test" then
if [Page 2] = null then [Page 3]
else [Page 2]
else [Page 1]
)

 

 

View solution in original post

1 REPLY 1
Cmcmahan
Resident Rockstar
Resident Rockstar

 

Looks like your IF statement is evaluating in an order you aren't expecting.  If Page 1 is not equal to test, the next logic it tries to apply is the if Page 2 = null logic.

 

Try this instead:

Table.AddColumn(#"Filtered/", "Custom", each 
if [Page 1] = "Test" then
if [Page 2] = null then [Page 3]
else [Page 2]
else [Page 1]
)

 

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.