79111280

Date: 2024-10-21 18:19:05
Score: 1
Natty:
Report link

You have to think more carefuly about your logic. Can you edit your question to explain what is your desired output and under what conditions?

0

=IF(
    AND(
        [@[Key Populations]]<>"Preg";
        [@[Key Populations]]<>"BF";
        [@Age]>14;
        P135>='information Sheet'!$AD$2;
        P135<='information Sheet'!$AE$2
        );                             //Condition 1, OK
    "VALID";                           //OK
    "INVALID";                         // This should Condition 2
    IF(
    (OR(
        [@[Key Populations]];"Preg";   //Should be  [@[Key Populations]]="Preg"; I assume
        [@[Key Populations]];"BF";     //Should be [@[Key Populations]]="BF"; I assume
        [@Age]=<14;
        P135>='information Sheet'!$AD$2;
        P135<='information Sheet'!$AE$2
        );
    " ";
    "False")))
Reasons:
  • Blacklisted phrase (1): what is your
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Michal