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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
cdunworth
New Member

subtract values across a row when there's multiple items in first column

I have a tablethat looks like below: 

 

Capture.PNG

 

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]

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

2 REPLIES 2
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
Ashish_Mathur
Super User
Super User

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])

Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.