Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
i would like to add a custom column in Power Query.
The if function is supposed to to check to different columns, the first regarding "not assigned" the second regarding not blank. The generating the output. However, there is the error message occuring "Expression.Error: The name 'BLANK' wasn't recognized. Make sure it's spelled correctly"
Appreciate your support!
if[#"Notification.Notification Level 01.Status Decision Made (Name)"]="Not assigned" and [Notification End Dat.Notification End Dat Level 01]<>BLANK() then "DLF" else "no error"
Solved! Go to Solution.
Hi @Kris_BI
Instead of Blank() try to put ""(Quotes)
if[#"Notification.Notification Level 01.Status Decision Made (Name)"]="Not assigned" and [Notification End Dat.Notification End Dat Level 01]<>"" then "DLF" else "no error"
Hope this should solve your problem.
Best regards,
Pooja Darbhe
Hi @Kris_BI
Instead of Blank() try to put ""(Quotes)
if[#"Notification.Notification Level 01.Status Decision Made (Name)"]="Not assigned" and [Notification End Dat.Notification End Dat Level 01]<>"" then "DLF" else "no error"
Hope this should solve your problem.
Best regards,
Pooja Darbhe
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
41 | |
24 | |
21 | |
20 | |
13 |
User | Count |
---|---|
159 | |
61 | |
60 | |
28 | |
20 |