Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello all,
Bit of a quick one, I am having a list of values, sick leave days taken through the year.
I have a measure that will sum them up per employee: Sick Leave Days:=SUM([values]) and sliced by employee.
I want to create the following IF: Sick Leave Adjusted:=IF([Sick Leave Days]>5,5,[Sick Leave Days]), in essence, eliminate any sick leave days over 5.
That works well but problem is, once in Grand Total of the pivot, [Sick Leave Adjusted] will return value 5 and not the adjusted sum.
I did try an iteration of it, (SUMX([Leave],IF([Sick Leave Days]>5,5,[Sick Leave Days]))) but that won't work since that only checks individual records rather than the SUM.
Another option I'm thinking is to use the SUMX above but then i'll have to head back to power query and group my values and sum them up by employee.
Any idea on DAX?
Cheers
Solved! Go to Solution.
Hi @kalspiros
Replace the column you used in Row Labes (Column A) with [a column that you used in row].
IF that column is Name then use [Name]
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Fantastic! many thanks @VahidDM that works wonders! Initially it was returning all 5's but the problem was with the [Sum Leave Days] measure, it all works fine now 🙂
Cheers!
Hi @kalspiros
try this:
Sick Leave Adjusted =
IF(
HASONEVALUE( [a column that you used in row] ),
IF( [Sick Leave Days] > 5, 5, [Sick Leave Days] ),
SUMX(
SUMMARIZE(
table,
[a column that you used in row],
"Leave", IF( [Sick Leave Days] > 5, 5, [Sick Leave Days] )
),
[Leave]
)
)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Thank you @VahidDM , apologies for the complete ignorance but i'm somehow lost due to HASONEVALUE which i can't get my head around it. what do you mean by
[a column that you used in row]
?
I think i'm doing something wrong because the values that are coming up are rather funny
Many thanks in advance
Hi @kalspiros
Replace the column you used in Row Labes (Column A) with [a column that you used in row].
IF that column is Name then use [Name]
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!