March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello
Im trying to set up an IF formula in a costum column to see witch columns have True on the same row
if [NI] = "TRUE" and [DT] = "TRUE" then "1" else "0"
I dont get any errors but i just dosent do the job
Solved! Go to Solution.
It is True/Fals datatype and that was the problem
I just figured out that if i removed the ( " ) it worked, so:
= if [NI] = true and [DT] = true then "1" else "0"
Worked like a charm.
Ty very mutch for answering tho Ruksuro 😉
Hi,
Assuming you have this stored as a True/False datatype your code should read:
Test = if(and(Sheet1[ColumnA]=TRUE,Sheet1[ColumnB]=TRUE),1,0)
The "TRUE" you've used is a string (because of the quotes), not TRUE. I've just tested and this doesn't work.
If your data type is actually a string, use:
Test = if(and(Sheet1[ColumnA]="TRUE",Sheet1[ColumnB]="TRUE"),1,0)
Hope that helps!
It is True/Fals datatype and that was the problem
I just figured out that if i removed the ( " ) it worked, so:
= if [NI] = true and [DT] = true then "1" else "0"
Worked like a charm.
Ty very mutch for answering tho Ruksuro 😉
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
146 | |
97 | |
79 | |
69 |