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! Request now
I have a tablethat looks like below:
I need to sum the Total Starting Spread column for each unique Recrutier and subtract that value from the Avg Spread Column. Below is the DAX i'm currently using but I'm not getting the correct answer. What do I need to do from there to get this figured out?
Spread)Diff = AVERAGE('Starting Spread Goals'[CandidatesInConsideration.Total Starting Spread])-'Starting Spread Goals'[Avg Spread]
Solved! Go to Solution.
Hi @cdunworth,
You can try to use below formula to get the diff of grouping average and current 'avg spread'.
Calculate column:
Spread Diff =
AVERAGEX (
FILTER (
ALL ( 'Starting Spread Goals' ),
[Recrutier] = EARLIER ( 'Starting Spread Goals'[Recrutier] )
),
[CandidatesInConsideration.Total Starting Spread]
)
- 'Starting Spread Goals'[Avg Spread]
Regards,
Xiaoxin Sheng
Hi @cdunworth,
You can try to use below formula to get the diff of grouping average and current 'avg spread'.
Calculate column:
Spread Diff =
AVERAGEX (
FILTER (
ALL ( 'Starting Spread Goals' ),
[Recrutier] = EARLIER ( 'Starting Spread Goals'[Recrutier] )
),
[CandidatesInConsideration.Total Starting Spread]
)
- 'Starting Spread Goals'[Avg Spread]
Regards,
Xiaoxin Sheng
Hi,
Drag Recruiter to the visual and write this calculated field formula i.e. measure
=SUM('Starting Spread Goals'[CandidatesInConsideration.Total Starting Spread])-MIN('Starting Spread Goals'[Avg Spread])
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.