Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 32
Default Revenue divided by Day How?

Dear All
I also need a Excel sheet that calculate automatically on daily basis. Exp.
One member register for 3 month starting day 4 May and end date 4Aug total
fee $150, the revenue should divide in way of valid days of the month , the
month of May should get 4 day revenue and Jun should get 30 day revenue July
should get 31 day share and Aug should get 4 day revenue.
Share of the month
Per day Revenue. 2.17
May 4 day=8.68
Jun 30 day = 65.10
July 31 Day = 67.27
Aug 4 Day = 8.68

Total Fee x total no of days= appeared in Starting to end month column.
Second i want to know how i assign a micro to a commond butten?
i have recorded micros just wnat to put
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 119
Default Revenue divided by Day How?


you should open the "form" toolbar and drag a button, then riht click and
choose assign macro.



"Qazi Ahmad" wrote:

Dear All
I also need a Excel sheet that calculate automatically on daily basis. Exp.
One member register for 3 month starting day 4 May and end date 4Aug total
fee $150, the revenue should divide in way of valid days of the month , the
month of May should get 4 day revenue and Jun should get 30 day revenue July
should get 31 day share and Aug should get 4 day revenue.
Share of the month
Per day Revenue. 2.17
May 4 day=8.68
Jun 30 day = 65.10
July 31 Day = 67.27
Aug 4 Day = 8.68

Total Fee x total no of days= appeared in Starting to end month column.
Second i want to know how i assign a micro to a commond butten?
i have recorded micros just wnat to put

  #3   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Revenue divided by Day How?

This picks up further from your earlier post,
Every Month Revenue
http://tinyurl.com/ypru6r

Here's a revised sample which illustrates one way
to meet your latest requirement in this post:
http://www.savefile.com/files/638334
Club_Membership_Fee_Apportionments_v3.xls

Startdates in E3 down, Enddates in F3 down, Fee paid in I3 down
1st of month dates (formatted as "mmm-yy") listed in L2 across, viz: Jan-07,
Feb-07, etc

Fee per day:
In J3: =I3/(F3-E3+1)
Copy down (this is the easy part)

Then in L3:
=IF(TEXT(L$2,"mmm-yy")=TEXT($E3,"mmm-yy"),(DATE(YEAR(L$2),MONTH(L$2)+1,0)-$E3+1)*$J3,IF(TEXT(L$2,"mmm-yy")=TEXT($F3,"mmm-yy"),($F3-DATE(YEAR(L$2),MONTH(L$2),1)+1)*$J3,IF(AND(DATE(YE AR(L$2),MONTH(L$2),1)DATE(YEAR($E3),MONTH($E3),1) ,DATE(YEAR(L$2),MONTH(L$2),1)<DATE(YEAR($F3),MONTH ($F3),1)),(DAY(DATE(YEAR(L$2),MONTH(L$2)+1,0))*$J3 ),"")))

Copy L3 across/fill down as far as required. This will calc the number of
days under each month's col as appropriate (between the startdates and
enddates in cols E and F) which is then multiplied by the Fee per day (col I)
to provide the required fee apportionment returns within the table.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Qazi Ahmad" wrote:
Dear All
I also need a Excel sheet that calculate automatically on daily basis. Exp.
One member register for 3 month starting day 4 May and end date 4Aug total
fee $150, the revenue should divide in way of valid days of the month , the
month of May should get 4 day revenue and Jun should get 30 day revenue July
should get 31 day share and Aug should get 4 day revenue.
Share of the month
Per day Revenue. 2.17
May 4 day=8.68
Jun 30 day = 65.10
July 31 Day = 67.27
Aug 4 Day = 8.68

Total Fee x total no of days= appeared in Starting to end month column

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 32
Default Revenue divided by Day How?

It is really great great help to solve my problem I am very thankful to all
participant and especially Mr. Max who give me the solution of my problems.
Second, Some one please tell me how I become Excel Expert?

Thanks you all and Mr. Max
Ahmad

"Max" wrote:

This picks up further from your earlier post,
Every Month Revenue
http://tinyurl.com/ypru6r

Here's a revised sample which illustrates one way
to meet your latest requirement in this post:
http://www.savefile.com/files/638334
Club_Membership_Fee_Apportionments_v3.xls

Startdates in E3 down, Enddates in F3 down, Fee paid in I3 down
1st of month dates (formatted as "mmm-yy") listed in L2 across, viz: Jan-07,
Feb-07, etc

Fee per day:
In J3: =I3/(F3-E3+1)
Copy down (this is the easy part)

Then in L3:
=IF(TEXT(L$2,"mmm-yy")=TEXT($E3,"mmm-yy"),(DATE(YEAR(L$2),MONTH(L$2)+1,0)-$E3+1)*$J3,IF(TEXT(L$2,"mmm-yy")=TEXT($F3,"mmm-yy"),($F3-DATE(YEAR(L$2),MONTH(L$2),1)+1)*$J3,IF(AND(DATE(YE AR(L$2),MONTH(L$2),1)DATE(YEAR($E3),MONTH($E3),1) ,DATE(YEAR(L$2),MONTH(L$2),1)<DATE(YEAR($F3),MONTH ($F3),1)),(DAY(DATE(YEAR(L$2),MONTH(L$2)+1,0))*$J3 ),"")))

Copy L3 across/fill down as far as required. This will calc the number of
days under each month's col as appropriate (between the startdates and
enddates in cols E and F) which is then multiplied by the Fee per day (col I)
to provide the required fee apportionment returns within the table.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Qazi Ahmad" wrote:
Dear All
I also need a Excel sheet that calculate automatically on daily basis. Exp.
One member register for 3 month starting day 4 May and end date 4Aug total
fee $150, the revenue should divide in way of valid days of the month , the
month of May should get 4 day revenue and Jun should get 30 day revenue July
should get 31 day share and Aug should get 4 day revenue.
Share of the month
Per day Revenue. 2.17
May 4 day=8.68
Jun 30 day = 65.10
July 31 Day = 67.27
Aug 4 Day = 8.68

Total Fee x total no of days= appeared in Starting to end month column

  #5   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Revenue divided by Day How?

Good to hear that. You're welcome, Ahmad.

.. Some one please tell me how I become Excel Expert?

... well, one could always start by trying to answer posts in this .misc
newsgroup, or in other popular excel newsgroups (such as
..worksheet.functions, .newusers, etc).

One could also pick up a lot by studying excel newsgroup posts by others and
the responses given, perhaps try working out the "answer" to these posts (w/o
looking at the responses) then see how your "answer" compares to those given
in the responses. Bon voyage`!
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Qazi Ahmad" wrote:
It is really great great help to solve my problem I am very thankful to all
participant and especially Mr. Max who give me the solution of my problems.
Second, Some one please tell me how I become Excel Expert?

Thanks you all and Mr. Max
Ahmad


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
365-day divided into 13 periods helen Excel Discussion (Misc queries) 7 October 24th 06 04:13 PM
returning zero on pct divided by zero dave99 Excel Discussion (Misc queries) 2 January 7th 06 08:47 PM
Amount is divided by 100 Kanga Excel Discussion (Misc queries) 2 October 13th 05 02:01 PM
Why are my cell being divided by 100? Bill Excel Worksheet Functions 2 June 15th 05 10:06 PM
Numbers divided by 100 Janepige Excel Discussion (Misc queries) 3 January 5th 05 09:55 AM


All times are GMT +1. The time now is 12:39 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"