Calculate Miles Needed

Robby19

Board Regular
Joined
Mar 19, 2018
Messages
227
Good day,

I am driving myself crazy with trying to figure this out. Please save me!

I need a formula that will tell me how many miles are needed to be driven annually, based off of a Cents Per Mile and Driver Salary. Need help figuring out the "###" parts.

Web example can be found here. Basically I am re-creating this in Excel and changing it to my specifications. However this functionality will help in the long run with estimations.
http://www.thetruckersplace.com/OwnerWrkSheet.aspx

Example;
[TABLE="width: 500"]
<TBODY>[TR]
[TD][/TD]
[TD]Annual Costs[/TD]
[TD]Monthly Costs[/TD]
[TD]Cents Per Mile[/TD]
[/TR]
[TR]
[TD]Actual Cost of Operation[/TD]
[TD][/TD]
[TD][/TD]
[TD]1.57[/TD]
[/TR]
[TR]
[TD]Drivers Income[/TD]
[TD]$50,000[/TD]
[TD]=B3/12 ($4,166.67)[/TD]
[TD]=B3/Miles Needed (###)[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD]Miles Needed:[/TD]
[TD]###[/TD]
[/TR]
</TBODY>[/TABLE]
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
I think I figured it out.

Code:
=SUM(Actual Cost of Operation,Drivers Income)*Cents Per Mile
Code:
=SUM(B2,B3)*D2
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top