Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default annual budget - by month help needed

I have a workbook with 13 sheets in it,
January(A4) - Beginning Balance(B4), Amount Due(C4), Amount Paid(E4)
|
|
\/
December
and a totals sheet
in the description col.(A) are monthly bills and revolving card bills. so
the bills that are monthly will not have a begining balance - on those i
would like the Begining Balance(B4) to = Ammount due(C4)

I need february begining balance to be janurary's amount paid - begining
balance

i think i need something like this;

if January!B4 = 0 or EMPTY then February!C4=February!B4
else
February!B4= February!B4 - February!E4

Thanks in advance, any and all help is appreciated.

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,805
Default annual budget - by month help needed

You have give the complete solution (if you are willing to enter the formula
in all the sheets)
Enter this in February!B4
=IF(January!B4 = 0,B4, B4-E4)

Similarly for each month..

Or you can try to build a formula, using INDIRECT, so that the previous
month is picked... Don't know whether it would be worth the effort.

"David" wrote:

I have a workbook with 13 sheets in it,
January(A4) - Beginning Balance(B4), Amount Due(C4), Amount Paid(E4)
|
|
\/
December
and a totals sheet
in the description col.(A) are monthly bills and revolving card bills. so
the bills that are monthly will not have a begining balance - on those i
would like the Begining Balance(B4) to = Ammount due(C4)

I need february begining balance to be janurary's amount paid - begining
balance

i think i need something like this;

if January!B4 = 0 or EMPTY then February!C4=February!B4
else
February!B4= February!B4 - February!E4

Thanks in advance, any and all help is appreciated.


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default annual budget - by month help needed

Thanks that is part of the solution, here is what I have working;

=IF(January!B3 = 0,0, January!B3-January!E3)

I also need to check for a empty(blank)cell - something like;

=IF(January!B3 = 0 or January!B3 =BLANK,0, January!B3-January!E3)

and lastly, if a amount is entered in January!C3 and January!B3 = 0 then the
amount entered in - January!C3 needs to be the same in January!B3 like;

January!B3 = January!C3

how can I combine these into one formula?

Thanks




"Sheeloo" <="to" & CHAR(95) & "sheeloo" & CHAR(64) & "hotmail.com" wrote in
message ...
You have give the complete solution (if you are willing to enter the
formula
in all the sheets)
Enter this in February!B4
=IF(January!B4 = 0,B4, B4-E4)

Similarly for each month..

Or you can try to build a formula, using INDIRECT, so that the previous
month is picked... Don't know whether it would be worth the effort.

"David" wrote:

I have a workbook with 13 sheets in it,
January(A4) - Beginning Balance(B4), Amount Due(C4), Amount Paid(E4)
|
|
\/
December
and a totals sheet
in the description col.(A) are monthly bills and revolving card bills. so
the bills that are monthly will not have a begining balance - on those i
would like the Begining Balance(B4) to = Ammount due(C4)

I need february begining balance to be janurary's amount paid - begining
balance

i think i need something like this;

if January!B4 = 0 or EMPTY then February!C4=February!B4
else
February!B4= February!B4 - February!E4

Thanks in advance, any and all help is appreciated.



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default annual budget - by month help needed

=IF(OR(January!B3 = 0,January!B3 =""),0, January!B3-January!E3)
but I don't understand what you are trying to say in the later part of your
question.
--
David Biddulph

"David" wrote in message
...
Thanks that is part of the solution, here is what I have working;

=IF(January!B3 = 0,0, January!B3-January!E3)

I also need to check for a empty(blank)cell - something like;

=IF(January!B3 = 0 or January!B3 =BLANK,0, January!B3-January!E3)

and lastly, if a amount is entered in January!C3 and January!B3 = 0 then
the amount entered in - January!C3 needs to be the same in January!B3
like;

January!B3 = January!C3

how can I combine these into one formula?

Thanks




"Sheeloo" <="to" & CHAR(95) & "sheeloo" & CHAR(64) & "hotmail.com" wrote
in message ...
You have give the complete solution (if you are willing to enter the
formula
in all the sheets)
Enter this in February!B4
=IF(January!B4 = 0,B4, B4-E4)

Similarly for each month..

Or you can try to build a formula, using INDIRECT, so that the previous
month is picked... Don't know whether it would be worth the effort.

"David" wrote:

I have a workbook with 13 sheets in it,
January(A4) - Beginning Balance(B4), Amount Due(C4), Amount Paid(E4)
|
|
\/
December
and a totals sheet
in the description col.(A) are monthly bills and revolving card bills.
so
the bills that are monthly will not have a begining balance - on those i
would like the Begining Balance(B4) to = Ammount due(C4)

I need february begining balance to be janurary's amount paid - begining
balance

i think i need something like this;

if January!B4 = 0 or EMPTY then February!C4=February!B4
else
February!B4= February!B4 - February!E4

Thanks in advance, any and all help is appreciated.





  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default annual budget - by month help needed

lets see if I can explain, for the 12 month sheets feb looks at jan
(begining balance), mar looks at feb(begining balance) and so on, when I
test this formula in feb all works great if there is a value in beginning
balance and amount due col. - for credit cards, this is what I asked for.
for non credit cards I have no beginning balance just an amount due so the
formula works if I enter the same amount in both the beginning balance and
amount due col.

I am trying to get a formula that will work whether it is a monthly bill or
a credit card. I can zip up the workbook and let you have a look if that
would help, I would not have any formulas or anything in the wb to be on the
safe side, just the worksheets.

Thanks, David D.




"David Biddulph" <groups [at] biddulph.org.uk wrote in message
...

=IF(OR(January!B3 = 0,January!B3 =""),0, January!B3-January!E3)
but I don't understand what you are trying to say in the later part of
your question.
--
David Biddulph

"David" wrote in message
...
Thanks that is part of the solution, here is what I have working;

=IF(January!B3 = 0,0, January!B3-January!E3)

I also need to check for a empty(blank)cell - something like;

=IF(January!B3 = 0 or January!B3 =BLANK,0, January!B3-January!E3)

and lastly, if a amount is entered in January!C3 and January!B3 = 0 then
the amount entered in - January!C3 needs to be the same in January!B3
like;

January!B3 = January!C3

how can I combine these into one formula?

Thanks




"Sheeloo" <="to" & CHAR(95) & "sheeloo" & CHAR(64) & "hotmail.com" wrote
in message ...
You have give the complete solution (if you are willing to enter the
formula
in all the sheets)
Enter this in February!B4
=IF(January!B4 = 0,B4, B4-E4)

Similarly for each month..

Or you can try to build a formula, using INDIRECT, so that the previous
month is picked... Don't know whether it would be worth the effort.

"David" wrote:

I have a workbook with 13 sheets in it,
January(A4) - Beginning Balance(B4), Amount Due(C4), Amount Paid(E4)
|
|
\/
December
and a totals sheet
in the description col.(A) are monthly bills and revolving card bills.
so
the bills that are monthly will not have a begining balance - on those
i
would like the Begining Balance(B4) to = Ammount due(C4)

I need february begining balance to be janurary's amount paid -
begining
balance

i think i need something like this;

if January!B4 = 0 or EMPTY then February!C4=February!B4
else
February!B4= February!B4 - February!E4

Thanks in advance, any and all help is appreciated.








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
How to automatically update a 12 month budget epu Excel Discussion (Misc queries) 5 September 2nd 08 10:11 PM
IF formula statement that would spread an annual budget over 12months [email protected] New Users to Excel 1 March 23rd 08 12:07 PM
annual growing rate formula or funtion needed!! Ivan Excel Worksheet Functions 1 October 24th 06 12:48 PM
Formulas calculate specified percentage of annual budget in Excel KC Excel Worksheet Functions 1 May 8th 06 05:36 AM
How do I set up a Yearly, by month, budget in Excel? napaman Excel Discussion (Misc queries) 1 February 20th 05 11:31 PM


All times are GMT +1. The time now is 08:49 PM.

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"