Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

I have implemented bellow logic in tableau. I need same to be implements in power bi please help me.

{ FIXED [BPO],DATEPART('month', [Month]),DATEPART('year', [Month]):
 SUM([Total Complaints Received Admin + Calls])}/{AVG([Inforce policies])}*100

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

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.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

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

AlexisOlson
Super User
Super User

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.

Anonymous
Not applicable

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors