Hi everyone,
I’m struggling with a compliance audit formula that doesn’t seem to work as expected. The formula uses COUNTIF
and nested IF
statements to evaluate risks based on two criteria - Major and Critical fields. Here’s the revised formula:
IF(
COUNTIF(
{Major Field 1},
{Major Field 2},
{Major Field 3},
{Major Field 4},
{Major Field 5},
{Major Field 6},
{Major Field 7},
{Major Field 8},
{Major Field 9},
{Major Field 10},
{Major Field 11},
{Major Field 12},
{Major Field 13},
“MAJOR RISK IDENTIFIED”
) >= 3,
“AUDIT REFUSED”,
IF(
OR(
{Critical Field 1} = “CRITICAL RISK IDENTIFIED”,
{Critical Field 2} = “CRITICAL RISK IDENTIFIED”,
{Critical Field 3} = “CRITICAL RISK IDENTIFIED”,
{Critical Field 4} = “CRITICAL RISK IDENTIFIED”,
{Critical Field 5} = “CRITICAL RISK IDENTIFIED”,
{Critical Field 6} = “CRITICAL RISK IDENTIFIED”
),
“AUDIT REFUSED”,
“AUDIT VALIDATED”
)
)
Despite the conditions being met, the formula consistently returns “AUDIT VALIDATED”, and I can’t figure out why. Any insights or suggestions would be greatly appreciated!
Thanks in advance!
_ Just to clarify, the actual formula I am using is:
IF(
COUNTIF(
{Présence PGCS},
{Vérification périodique engin},
{État engin},
{Surveillant nacelle},
{Habilitation hauteur},
{Signalisation},
{Zone intervention condamnée},
{Véhicules équipés},
{EPI intervenants},
{Respect circulation},
{Présence extincteur},
{Présence trousse de secours},
{Propreté du chantier},
“NON-CONFORME”
) >= 3,
“AUDIT REFUSÉ”,
IF(
OR(
{Présence PP signé} = “NON-CONFORME”,
{Mesures connues et appliqués} = “NON-CONFORME”,
{Autorisation stationnement} = “NON-CONFORME”,
{Arrêté de circulation disponible sur site} = “NON-CONFORME”,
{Habilitation conducteur engin} = “NON-CONFORME”,
{Coupure émission onde} = “NON-CONFORME”
),
“AUDIT REFUSÉ”,
“AUDIT VALIDÉ”
)
)
This version uses “NON-CONFORME” as the condition to check against, unlike the English version provided earlier. Please consider this when offering suggestions or advice.