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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

Headcount Changes in Waterfall Chart

I'm trying to create a Waterfall visual that shows

  • Hires and re-hires as "Increases"
  • Terminations and retirements as "Decreases"

 

My source data is an Excel spreadsheet showing the names of employees who have been HIRED, RE-HIRED, TERMINATED, OR RETIRED over that past 12 months.

 

Is there a simple way to tell Power BI to treat the HIRES AND RE-HIRES as Increases, and the TERMINATIONS AND RETIREMENTS as Decreases?

 

I've searched in the Power BI Community for solutions on this topic.  Thanks in advance for any assistance you can lend.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Thank you for responding.

 

I found another way that works as well:

 

  • Edit Queries
  • Add Column Tab
  • Add Conditional Column
  • Name the new column Headcount Change
  • Tell the formula to treat Hires and Rehires as 1
  • Tell the formula to treat Terminations and Retirements as -1
  • Close and apply
  • In the Report page, click on the Waterfall chart to Sort by Headcount Change

 

View solution in original post

2 REPLIES 2
jdbuchanan71
Super User
Super User

You could add a measure to sum the amounts with the correct sign.

 

Headcount Change = SUMX( 'Headcount Changes' , IF ( 'Headcount Changes'[Type] IN {"Hire", "Re-Hire"},1,-1))
Anonymous
Not applicable

Thank you for responding.

 

I found another way that works as well:

 

  • Edit Queries
  • Add Column Tab
  • Add Conditional Column
  • Name the new column Headcount Change
  • Tell the formula to treat Hires and Rehires as 1
  • Tell the formula to treat Terminations and Retirements as -1
  • Close and apply
  • In the Report page, click on the Waterfall chart to Sort by Headcount Change

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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