Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Rewrite IF function

I am using this formular, in order to evaluate if some requirement are fulfil. But it does not give me "No" for B10, but works with B12 for both "Yes" and "No".    Dag = VAR dag = Ark1[øvelsesnu...
  • Anonymous's avatar
    Anonymous
    5 years ago

    Hi Anonymous ,

    Please update the formula of calculated column [Dag] as below and check whether you can get the correct result.

     

    Dag =
    VAR dag = Ark1[øvelsesnummer]
    RETURN
        IF (
            (
                Ark1[Station] = "Christianshavn"
                    && Ark1[Dato] <= DATE ( 2020, 10, 17 )
                    && dag IN { "B10", "B12" }
            )
                || ( dag
                IN { "B1", "B2", "B10", "B12" }
                && Ark1[Station] = "Frederiksberg"
                && [Week Nr] <= 17 ),
            "Ja",
            "Nej"
        )

     

    If the above one can't get the correct result, please provide some sample data(exclude sensitive data) and the related calculation logic in order to provide the suitable solution for your scenario. Thank you.

    Best Regards