Forum Discussion

Rubal's avatar
Rubal
Helper II
7 years ago
Solved

if or a switch statement

Hi ,

 

I am new to Power BI and need some help with the below case. Appreciate if someone can help with the DAX formula for the case. I am not sure IF of SWITCH statement works best for the below case. 

Please Note: I will have "AAA" and "BBB" as part of a visual filter too. Thank You.

 

(CASE

WHEN Field1 = "AAA" then "RETAIL * GROWTH FACTOR" AND "ONLINE * GROWTH FACTOR"

ELSE

WHEN Field1 = "BBB" then "RETAIL" AND "ONLINE"

END)

 

  • Hi Rubal ,

    It seems that you need to chang your query to dax in power bi.

    Based on your logic, we could create the dax like below.

    =
    IF (
        Field1 = "AAA",
        "RETAIL * GROWTH FACTOR" && "ONLINE * GROWTH FACTOR",
        IF ( Field1 = "BBB", "RETAIL" && "ONLINE" )
    )

    However, more details about your scenario will be more helpful.

    If it is convenient, could you share your data sample which could reproduce your scenario so that we could help further on it?

    Best Regards,

    Cherry

4 Replies

    • Rubal's avatar
      Rubal
      Helper II

      yes, I have. Need the formula example for my specific case though

      • v-piga-msft's avatar
        v-piga-msft
        Resident Rockstar

        Hi Rubal ,

        It seems that you need to chang your query to dax in power bi.

        Based on your logic, we could create the dax like below.

        =
        IF (
            Field1 = "AAA",
            "RETAIL * GROWTH FACTOR" && "ONLINE * GROWTH FACTOR",
            IF ( Field1 = "BBB", "RETAIL" && "ONLINE" )
        )

        However, more details about your scenario will be more helpful.

        If it is convenient, could you share your data sample which could reproduce your scenario so that we could help further on it?

        Best Regards,

        Cherry