Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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])
Solved! Go to Solution.
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]
)
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]
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
123 | |
78 | |
48 | |
38 | |
37 |
User | Count |
---|---|
196 | |
80 | |
70 | |
51 | |
42 |