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.
Hello looking to convert my IF formula as below
=IF(OR([@[Confirmation Status]]="Confirmed",[@[Confirmation Status]]="ManlConfirmed",[@[Confirmation Status]]="autoConfirmed",[@[Confirmation Status]]="Matched"),"Confirmed","Not Confirmed")
I'm Looking to add a Custom Column where I get this where I can enter the fomula
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
if [Confirmation Status] = "Confirmed" or [Confirmation Status] = "ManlConfirmed" or [Confirmation Status] = "autoConfirmed" or [Confirmation Status] = "Matched" then "Confirmed" else "Not confirmed"
= Table.AddColumn(Source, "expected result column", each if [Confirmation Status] = "Confirmed" or [Confirmation Status] = "ManlConfirmed" or [Confirmation Status] = "autoConfirmed" or [Confirmation Status] = "Matched" then "Confirmed" else "Not confirmed")
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Thanks again!
Hi,
Please check the below picture and the attached pbix file.
if [Confirmation Status] = "Confirmed" or [Confirmation Status] = "ManlConfirmed" or [Confirmation Status] = "autoConfirmed" or [Confirmation Status] = "Matched" then "Confirmed" else "Not confirmed"
= Table.AddColumn(Source, "expected result column", each if [Confirmation Status] = "Confirmed" or [Confirmation Status] = "ManlConfirmed" or [Confirmation Status] = "autoConfirmed" or [Confirmation Status] = "Matched" then "Confirmed" else "Not confirmed")
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
User | Count |
---|---|
118 | |
75 | |
60 | |
50 | |
44 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |