Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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"
Solved! Go to Solution.
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"
Best Regards,
Qiuyun Yu
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"
Best Regards,
Qiuyun Yu
DT_LAN I select by a filter thatI put in the project
look
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 85 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |