Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi, I am trying below formula in custom column in power query but its showing error, please help on this
if(and([is_blkd_for_secondary_costs_posting]="x",[is_blocked_for_commitment_posting]="x",[is_blocked_for_plan_primary_costs]="x",[is_blocked_for_plan_revenues]="x",[is_blocked_for_plan_secondary_costs]="x",[is_blocked_for_revenue_posting]="x",[is_blkd_for_primary_costs_posting]="x",[consumption_qty_is_recorded]=x),"lock",
"active")
Solved! Go to Solution.
I think instead of commas you need to replace them with and
Hi @Rockiz
Here is another approach:
if List.MatchesAll({[Column1],[Column2],[Column3],[Column4]}, each _ = "x") then "lock" else "active"
Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!
Also a good approach, but this will only work under the condition that "x" is the same value across all columns.
Thanks it worked
Hi @Rockiz
Here is another approach:
if List.MatchesAll({[Column1],[Column2],[Column3],[Column4]}, each _ = "x") then "lock" else "active"
Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!
Also a good approach, but this will only work under the condition that "x" is the same value across all columns.
if
[is_blkd_for_secondary_costs_posting]="x" and
[is_blocked_for_commitment_posting]="x" and
[is_blocked_for_plan_primary_costs]="x" and
[is_blocked_for_plan_revenues]="x" and
[is_blocked_for_plan_secondary_costs]="x" and
[is_blocked_for_revenue_posting]="x" and
[is_blkd_for_primary_costs_posting]="x" and
[consumption_qty_is_recorded]=x
then
"lock"
else
"active"
I think instead of commas you need to replace them with and
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 9 | |
| 8 | |
| 7 | |
| 5 | |
| 5 |