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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

Custom Colum with condition

I have to create a custom column with this condition 

 

SELECT SUM(VALOR_OBJ) FROM PROJ_DOC_CUSTO WHERE DT_LAN LIKE '%201709%' AND (TEXTO NOT LIKE '%ORD 9%' AND TEXTO NOT LIKE '%ORD 6%' AND TEXTO NOT LIKE '%Reclassificação%' AND (TEXTO <> '' OR (TEXTO_CAB LIKE '%tarifa%')) AND TEXTO NOT LIKE '%TRANSITORIA%')

 

I try it, but did not work, my logic must be wrong

 

if
List.AllTrue({
not Text.Contains([TEXTO], "ORD 9"),
not Text.Contains([TEXTO], "ORD 6"),
not Text.Contains([TEXTO], "Reclassificação"),
not Text.Contains([TEXTO], " "),
List.AnyTrue({
[TEXTO] <> "",
Text.Contains([TEXTO_CAB], "tarifa")
}),
not Text.Contains([TEXTO], "TRANSITORIA")
})
then "True"
else "False"

2 ACCEPTED SOLUTIONS
v-qiuyu-msft
Community Support
Community Support

Hi @Anonymous,

 

You miss the condition for DT_LAN column, please modify the column below: 

 

if
List.AllTrue({ Text.Contains([DT_LAN],"201709"),
not Text.Contains([TEXTO], "ORD 9"),
not Text.Contains([TEXTO], "ORD 6"),
not Text.Contains([TEXTO], "Reclassificação"),
not Text.Contains([TEXTO], " "),
List.AnyTrue({
[TEXTO] <> "",
Text.Contains([TEXTO_CAB], "tarifa")
}),
not Text.Contains([TEXTO], "TRANSITORIA")
})
then "True"
else "False"

 

q4.PNGq5.PNG

 

Best Regards,
Qiuyun Yu

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

Anonymous
Not applicable

DT_LAN I select by a filter thatI put in the project

 

look

 

zz2.PNG

View solution in original post

2 REPLIES 2
v-qiuyu-msft
Community Support
Community Support

Hi @Anonymous,

 

You miss the condition for DT_LAN column, please modify the column below: 

 

if
List.AllTrue({ Text.Contains([DT_LAN],"201709"),
not Text.Contains([TEXTO], "ORD 9"),
not Text.Contains([TEXTO], "ORD 6"),
not Text.Contains([TEXTO], "Reclassificação"),
not Text.Contains([TEXTO], " "),
List.AnyTrue({
[TEXTO] <> "",
Text.Contains([TEXTO_CAB], "tarifa")
}),
not Text.Contains([TEXTO], "TRANSITORIA")
})
then "True"
else "False"

 

q4.PNGq5.PNG

 

Best Regards,
Qiuyun Yu

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

DT_LAN I select by a filter thatI put in the project

 

look

 

zz2.PNG

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 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.