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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I am working on effort certification which happens once a quarter. I am comparing what they certify vs the hours they actualy work per fiscal quarter/year. Our FY starts in September so they would certify on 9/1, 12/1, 4/1 and 7/1. I can't get the max to work once i filter by fiscal month even though it is within the same quarter. So if someone says they will do 20% effort on 9/1. I want to be able to use that percentage for Sep - Nov. It seems to work in September but when I change to October, it is blank even though it is within the quarter.
Solved! Go to Solution.
Hi @crjackson ,
I create a table as you mentioned.
Then I create a calculated column and here is the DAX code.
Quarterly Effort % =
VAR QuarterStart =
DATE ( YEAR ( 'Table'[Date] ), MONTH ( 'Table'[Date] ), 1 )
VAR QuarterEnd =
EOMONTH ( QuarterStart, 2 )
RETURN
CALCULATE (
AVERAGE ( 'Table'[EffortPercentage] ),
FILTER ( 'Table', 'Table'[Date] >= QuarterStart && 'Table'[Date] <= QuarterEnd )
)
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @crjackson ,
I create a table as you mentioned.
Then I create a calculated column and here is the DAX code.
Quarterly Effort % =
VAR QuarterStart =
DATE ( YEAR ( 'Table'[Date] ), MONTH ( 'Table'[Date] ), 1 )
VAR QuarterEnd =
EOMONTH ( QuarterStart, 2 )
RETURN
CALCULATE (
AVERAGE ( 'Table'[EffortPercentage] ),
FILTER ( 'Table', 'Table'[Date] >= QuarterStart && 'Table'[Date] <= QuarterEnd )
)
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
So the issue with this is I don't want to have to populate a row for each physician each month. They fill out the certification form once a Fiscal Quarter so the table looks like this:
I would like what they enter in September "20%" to count for the entire quarter so September, October and November. I was trying to calculate the Max per Fiscal Quarter however the problem I am running into is that as soon as the slicer changes to October (within the same quarter), it renders a blank.
User | Count |
---|---|
11 | |
9 | |
6 | |
5 | |
4 |