Apr 11, 2019 03:33 AM
Hi everyone !
Here’s a very simple formula :
IF(
{Edition}=1,
{Genuine Console Family},
IF(
NOT(
AND(
{Accessories list},
{Games}
)
),
{Genuine Console Family}
)
)
I don’t know why, the first IF doesn’t work at all. I check the checkbox and nothing happens.
But, when Accessories list and Games have values, I can check and the field is fill with the right value (Genuine Console Family).
Thanks a lot for any help.
Solved! Go to Solution.
Apr 11, 2019 05:11 AM
I made a mistake… and I’m sorry.
I forget to mention that I need to fill another field (hardwares) in order to have Genuine Family Console field not empty… so it works like a charm !
Thanks for helping my brain working :winking_face:
Apr 11, 2019 04:01 AM
I just tried your formula. It does work, but maybe you’ve got the logic wrong for the behaviour you want. What exactly are you trrying to achieve?
Apr 11, 2019 04:11 AM
OK let me explain.
I want to display {Genuine Console Family} (another field content) if:
Apr 11, 2019 04:16 AM
IF(
OR({Edition}=1,AND({Accessories list}="",
{Games}="")
),
{Genuine Console Family},
BLANK()
)
Apr 11, 2019 04:19 AM
That’s assuming Accessories List and Games are both text fields.
I think your problem was applying NOT to an AND statement. Your AND statement was evaluating as TRUE if both Accessories and Games were not empty, and FALSE in all other instances. The NOT statement then reversed this. So it was FALSE when both Accessories and Games were not empty and TRUE for all other instances.
Apr 11, 2019 04:30 AM
And they’re not text fields… :slightly_smiling_face:
Apr 11, 2019 04:33 AM
You might need to change the Accessories List and Games evaluations then. Possibly to:
AND({Accessories list}=0,{Games}=0)
Apr 11, 2019 04:37 AM
So I did test what you wrote… and still, when I check the checkbox, nothing is displayed in the field.
I don’t understand at all what is the problem.
Apr 11, 2019 04:38 AM
What type of fields are Accessories List and Games?
Apr 11, 2019 04:38 AM
Both are links to fields