LABOR EFFORT PROJECTION
I need help figuring out how to calculate how much labor cost for a particular task will be at the end date based on -
- column 1 - start date
- column 2 - end date
- column 3 - current labor spent
Initially I'm thinking I need to take the current labor spent to date and divide between today and start date. then multiply by overall duration?
The idea is to be able to figure out if the labor will be more than the budget at the end date
Does this look right?
Best Answer
-
Your logic makes sense to me!
For your formula, you won't need the SUM() at the beginning. Instead, you can just enclose the division in parentheses before the multiplication:
=([labor spent to date]@row / NETWORKDAYS([start date]@row, TODAY())) * [duration days]@row
I used @row instead of a row number so you could set this as a Column Formula if needed.
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
Answers
-
Your logic makes sense to me!
For your formula, you won't need the SUM() at the beginning. Instead, you can just enclose the division in parentheses before the multiplication:
=([labor spent to date]@row / NETWORKDAYS([start date]@row, TODAY())) * [duration days]@row
I used @row instead of a row number so you could set this as a Column Formula if needed.
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.6K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 466 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 64 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!