Forum Discussion

datanau001's avatar
datanau001
Helper III
5 years ago
Solved

DAX Calculated column if statement (KPI Indicator)

Dear all,

 

I’m trying to create an indicator column in Dax using IF condition which will test the following:

 

KPI Indicator =

IF ('V_SR_STATUS_LINES_SEC'[Total Audit Time Hrs] < 'V_SR_STATUS_LINES_SEC'[SPE KPI] ,

    "KPI Met",

    "KPI Not Met")

 

In the left table this new “KPI Indicator” column was not added and so the table is correct.

In the right table this new column was added and then it is splitting the rows for some of the tickets.

 

See this example:

1-14204341391 (in the left the total time is 339.1425 and so it should be indicated as “KPI Not Met” in a unique row). In the right with the new column I have as result two rows with different values for total time and both KPI Met and KPI Not Met.

 

What it seems is this new column when the total time is greater than 60 (KPI reference), it will always break the row in two (one for “met” and another for “not met).

 

 

Could you please help to understand what is wrong and how can I fix this?

 

Thank you!

  • datanau001 

    Because  you added a calculated column, the result is evaluated on each row, to solve it, create a measure as follows and it instead of the column:

    KPI Indicator Measure=
    IF (
        SUM ( 'V_SR_STATUS_LINES_SEC'[Total Audit Time Hrs] ) < SUM ( 'V_SR_STATUS_LINES_SEC'[SPE KPI] ),
        "KPI Met",
        "KPI Not Met"
    )
    
  • datanau001's avatar
    datanau001
    5 years ago

    Hello, here is a way we can make it works with a calculated column:

    KPI Indicator =
    CALCULATE (
        SUM ( 'V_SR_STATUS_LINES_SEC'[Total Audit Time Hrs] ),
        FILTER (
            ALLSELECTED ( 'V_SR_STATUS_LINES_SEC' ),
            'V_SR_STATUS_LINES_SEC'[SR] = MAX ( 'V_SR_STATUS_LINES_SEC'[SR] )
        )
    )

3 Replies

  • datanau001 

    Because  you added a calculated column, the result is evaluated on each row, to solve it, create a measure as follows and it instead of the column:

    KPI Indicator Measure=
    IF (
        SUM ( 'V_SR_STATUS_LINES_SEC'[Total Audit Time Hrs] ) < SUM ( 'V_SR_STATUS_LINES_SEC'[SPE KPI] ),
        "KPI Met",
        "KPI Not Met"
    )
    
    • datanau001's avatar
      datanau001
      Helper III

      Fowmy Thank you for your reply.

      Now with the measure, it worked fine.

      However, I'll need this indicator as a column because it will be used to calculate how many tickets were solved as Kpi met and Kpi not met. 

       

      Thank you! 

      • datanau001's avatar
        datanau001
        Helper III

        Hello, here is a way we can make it works with a calculated column:

        KPI Indicator =
        CALCULATE (
            SUM ( 'V_SR_STATUS_LINES_SEC'[Total Audit Time Hrs] ),
            FILTER (
                ALLSELECTED ( 'V_SR_STATUS_LINES_SEC' ),
                'V_SR_STATUS_LINES_SEC'[SR] = MAX ( 'V_SR_STATUS_LINES_SEC'[SR] )
            )
        )