amount divided by years and get per month valve.

noubaba

New Member
Joined
Apr 10, 2018
Messages
19
I am looking for a excel formula:

Lets suppose I have some earnings (amount) in one cell and 1 year, 8month and 10 days is mentioned in other cell. I want to divide available earnings (amount) by 1 year, 8month and 10 days and want to get earnings per month, please help me to fabricate excel formula for that. Thanks in advance.
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
noubaba, welcome to the Forum!

You say in your post "1 year, 8month and 10 days is mentioned in other cell". Is there any specific structure in how these data points for year, month and days is listed in this cell?
It is easy to create a formula if those values are listed in separate cells and it is maybe possible if they are in a single cell but there would need to be consistency in how they are listed/mentioned.

Let me know and I will try to help you.

Just for reference, if the value is in cell A2, the year is in B2, the month in C2 and days in D2 this formula in E2 would give you the average monthly value:
=A2/((B2*12)+C2+(D2/30.41667))
 
Upvote 0
Thank you Frank to help me on this forum, actually "1 year, 8month and 10 days" is appears in once cells derived from different cell by this formula (=DATEDIF(B49,TODAY(),"y") & " Years, " & DATEDIF(B49,TODAY(),"ym") & " Months, " & DATEDIF(B49,TODAY(),"md") & " Days"),
Further more
purchased date in cell B49 is "Aug/1/2016"
time passed since date of purchase till today is "1 year, 8month and 10 days" appearing in cell B50.
Total earning during this period is 993000 rupees appearing in cell B48.
Now based on above data want to calculate what would be the earning of per month.
 
Upvote 0
try this formula:
=B48/((TODAY()-B49)/30.41667)
30.41667 is the result of 365/12 which is the average days in a month.
The result of this formula is 48,873.39

If you need a more exact result we would have to determine which month the 10 days (from your formula) falls to to create a more exact fraction of a month.
 
Upvote 0
Thank you Frank, this formula is working fine. Really appreciate your support. Next time would prefer to use this forum rather than to search formulas on Google.
 
Upvote 0

Forum statistics

Threads
1,214,638
Messages
6,120,674
Members
448,977
Latest member
moonlight6

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