Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
Do you know what is the cause of my false addition ? 35,00+3,00 is 38,00 not 38,75 or 38,21 or...
See below : in HperOSP, I add OSPDur to Boni If I have a Y in the table. here the measure :
HperOSP =
var _SumBoni =
CALCULATE (
( [OSPDur]+([Boni]) ),
CurrentWeek[RustBoni] = "Y"
)
var _SumNoBoni =
CALCULATE (
[OSPDur],
CurrentWeek[RustBoni] = "N"
)
return
_SumBoni + _SumNoBoni
the result : (when "OSPDur = 35,00" CurrentWeek[RustBoni] = "Y")
Thanks a lot for your help,
Don
Solved! Go to Solution.
Hi @DonPepe ,
Firstly, create a flag measure to filter the table:
Flag = IF(MAX('CurrentWeek'[Activity Name])="Rust" && MAX('CurrentWeek'[RustBoni]) = "Y" ,1,0)OSPDur = CALCULATE(SUM(CurrentWeek[PLA Duration (seconds)]) /3600,FILTER(ALL(CurrentWeek), [Activity Name]<>"Rust"))Boni = [OSPDur]*0.6/7
Output is the same as your Test table returns:
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @DonPepe ,
Firstly, create a flag measure to filter the table:
Flag = IF(MAX('CurrentWeek'[Activity Name])="Rust" && MAX('CurrentWeek'[RustBoni]) = "Y" ,1,0)OSPDur = CALCULATE(SUM(CurrentWeek[PLA Duration (seconds)]) /3600,FILTER(ALL(CurrentWeek), [Activity Name]<>"Rust"))Boni = [OSPDur]*0.6/7
Output is the same as your Test table returns:
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi ,
Thanks for your time.
I found the error and I have a granularity issue.
So I have one ID who make several task with a certain durantion during his day and my measure should represent :
If when 'CurrentWeek'[Activity Name]="Rust", 'CurrentWeek'[Boni] = "Y" then [OSPDur]+[Boni] --the measure else [OSPDur] -- the measure
But I dont know how to translate it in DAX.
here a sample of my data :
| ID | Activity Name | PLA Duration (seconds) | RustBoni |
| CLD334 | Te voet ingang >< bureau | 12 | N |
| CLD334 | Laden | 6 | N |
| CLD334 | Laden | 1119 | Y |
| CLD334 | Traject Parking >< Kade - camion fix | 93 | N |
| CLD334 | Afleveren voertuig | 310 | N |
| CLD334 | Te voet Kantoor >< Voertuig | 185 | N |
| CLD334 | Sleutels, documenten en scanner teruggeven | 310 | N |
| CLD334 | Rust | 2700 | Y |
| CLD334 | Lossen | 1269 | N |
| CLD334 | Te voet Kantoor >< Voertuig | 180 | N |
| CLD334 | Sleutels, documenten en scanner teruggeven | 300 | N |
| CLD334 | Te voet ingang >< bureau | 0 | N |
Thanks a lot,
Don
Ok I found a way with a new calculated table. I would have prefered with a measure but I dont master DAX enough.
Here the code of the new table :
Test =
SUMMARIZECOLUMNS(
CurrentWeek[ID],
"BoniYN",
IF(
ISBLANK(
CALCULATE(
MAX(CurrentWeek[RustBoni]),
CurrentWeek[Activity Name]="Rijden"
)
),
MAX(CurrentWeek[RustBoni]),
CALCULATE(
MAX(CurrentWeek[RustBoni]),
CurrentWeek[Activity Name]="Rijden"
)
),
"OSPDur",
CALCULATE(
SUM(CurrentWeek[PLA Duration (seconds)])/3600,
CurrentWeek[Activity Name]<>"Rust"
),
"Boni",
((
CALCULATE(
SUM(CurrentWeek[PLA Duration (seconds)])/3600,
CurrentWeek[Activity Name]<>"Rust"
)
)*0.6)/(7)
)Don
@DonPepe Try this DAX:
= IF(CurrentWeek'[Activity Name]="Rust" && 'CurrentWeek'[Boni] = "Y" ,[OSPDur]+[Boni] ,[OSPDur])
It worked in a calculated column but not in a measure.
How can I put the condition on the line "Rust" and sum on all the ID ?
Thanks,
Don
@DonPepe You can use aggregate functions like MIN ,MAX etc.
= IF(MAX(CurrentWeek'[Activity Name])="Rust" && MAX('CurrentWeek'[Boni]) = "Y" ,[OSPDur]+[Boni] ,[OSPDur])
Sorry but it didn't work.
I think the issue comme from the granularity.
I have to see on the task level if Rust ="Y" and if so, calculate on the ID level the sum of each task duration.
OSPDur = Sum(CurrentWeek'[PLA Duration (seconds)])
and Boni = Sum(CurrentWeek'[PLA Duration (seconds)])*0.6/7
I don't know if you understand. But really thanks to help me.
Don
@DonPepe Can you share the sample data (by copy pasting or excel) here for better solving at my end?
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 35 | |
| 34 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 136 | |
| 102 | |
| 68 | |
| 66 | |
| 58 |