Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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!
Solved! Go to Solution.
@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"
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
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] )
)
)
@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"
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@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!
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] )
)
)
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!