Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
{ FIXED [BPO],DATEPART('month', [Month]),DATEPART('year', [Month]):
 SUM([Total Complaints Received Admin + Calls])}/{AVG([Inforce policies])}*100
Solved! Go to Solution.
It would help if you explained what the logic does. I'm sure I'm not the only one who doesn't remember clearly how FIXED works in Tableau.
HI @Anonymous,,
Fixed function seems summarize fields which you define after fix function, then use these as summary group to calculate with column defined after ':' character.
You can try to use following measure if it works:
Measure =
CALCULATE (
    SUM ( TABLE[Total Complaints Received Admin + Calls] ),
    ALLSELECTED ( TABLE ),
    VALUES ( TABLE[BPO] ),
    VALUES ( TABLE[Year] ),
    VALUES ( TABLE[Month] )
)
    / AVERAGE ( Table[Inforce policies] )
    * 100
Regards,
Xiaoxin Sheng
It would help if you explained what the logic does. I'm sure I'm not the only one who doesn't remember clearly how FIXED works in Tableau.
Please check beloow link.
https://onlinehelp.tableau.com/current/pro/desktop/en-us/calculations_calculatedfields_lod.htm
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.