#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Formula Question

Okay, I don't really know how to word this, so I'm sorry if it sounds awkward.

I'm trying to set up Excel so that it can basically be my checkbook registry
so that I don't mess up the math. So, I have a column for debits (D), one for
credits (E) and one for the running balance (F).

Is there a forumla that I can apply to column F that will see what's in D
and E for that row, add or subtract what's there, and then apply that to the
previous row's F? Or do I just have to do separate forumlas for each row...?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 430
Default Formula Question

In your very 1st Row you could enter your debits and credits and this formula
in column F: =E2-D2 (assuming your data starts in row two due to headings.)

Then in the next cell down in column F put this formula: =F2+E3-D3
Then copy this formula down as needed in column F. It should look at your
previous balance (in F) then add the credit and subtract the debit to create
a new balance.

"dramajuana" wrote:

Okay, I don't really know how to word this, so I'm sorry if it sounds awkward.

I'm trying to set up Excel so that it can basically be my checkbook registry
so that I don't mess up the math. So, I have a column for debits (D), one for
credits (E) and one for the running balance (F).

Is there a forumla that I can apply to column F that will see what's in D
and E for that row, add or subtract what's there, and then apply that to the
previous row's F? Or do I just have to do separate forumlas for each row...?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Formula Question

That's actually exactly what I've been doing. I was just wondering if there
was a forumla I could apply to the column so I didn't have to do that for
every row.

"tim m" wrote:

In your very 1st Row you could enter your debits and credits and this formula
in column F: =E2-D2 (assuming your data starts in row two due to headings.)

Then in the next cell down in column F put this formula: =F2+E3-D3
Then copy this formula down as needed in column F. It should look at your
previous balance (in F) then add the credit and subtract the debit to create
a new balance.

"dramajuana" wrote:

Okay, I don't really know how to word this, so I'm sorry if it sounds awkward.

I'm trying to set up Excel so that it can basically be my checkbook registry
so that I don't mess up the math. So, I have a column for debits (D), one for
credits (E) and one for the running balance (F).

Is there a forumla that I can apply to column F that will see what's in D
and E for that row, add or subtract what's there, and then apply that to the
previous row's F? Or do I just have to do separate forumlas for each row...?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,047
Default Formula Question

Hi Dramajuana,

on F column use:

=(if(or(d3=0,d3="")),f2+d3,f2-c3)

hth
regards from Brazil
Marcelo

"dramajuana" escreveu:

Okay, I don't really know how to word this, so I'm sorry if it sounds awkward.

I'm trying to set up Excel so that it can basically be my checkbook registry
so that I don't mess up the math. So, I have a column for debits (D), one for
credits (E) and one for the running balance (F).

Is there a forumla that I can apply to column F that will see what's in D
and E for that row, add or subtract what's there, and then apply that to the
previous row's F? Or do I just have to do separate forumlas for each row...?

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,047
Default Formula Question

sory my mistake on the formulae

use =if(d30,f2+d3,f2-e3)

hth
regards from Brazil
Marcelo

"Marcelo" escreveu:

Hi Dramajuana,

on F column use:

=(if(or(d3=0,d3="")),f2+d3,f2-c3)

hth
regards from Brazil
Marcelo

"dramajuana" escreveu:

Okay, I don't really know how to word this, so I'm sorry if it sounds awkward.

I'm trying to set up Excel so that it can basically be my checkbook registry
so that I don't mess up the math. So, I have a column for debits (D), one for
credits (E) and one for the running balance (F).

Is there a forumla that I can apply to column F that will see what's in D
and E for that row, add or subtract what's there, and then apply that to the
previous row's F? Or do I just have to do separate forumlas for each row...?



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,345
Default Formula Question

dramajuana,

I would suggest a slight change to the formula:

=IF(AND(D2="",E2=""),"",F1+D2-E2)

This will leave the cell looking blank if there is no data in D2 or E2.

Copy this down as far a you need by using the fill handle - select the cell
then hover the cursor over the bottom left corner where there is a small
black square whereupon the cursor will change to black cross -hairs, left
click and drag down. Or highlight the range of cells that you want the
formula in including the one with the formula then select Edit Fill Down

--
HTH

Sandy
In Perth, the ancient capital of Scotland


with @tiscali.co.uk


"dramajuana" wrote in message
...
That's actually exactly what I've been doing. I was just wondering if
there
was a forumla I could apply to the column so I didn't have to do that for
every row.

"tim m" wrote:

In your very 1st Row you could enter your debits and credits and this
formula
in column F: =E2-D2 (assuming your data starts in row two due to
headings.)

Then in the next cell down in column F put this formula: =F2+E3-D3
Then copy this formula down as needed in column F. It should look at
your
previous balance (in F) then add the credit and subtract the debit to
create
a new balance.

"dramajuana" wrote:

Okay, I don't really know how to word this, so I'm sorry if it sounds
awkward.

I'm trying to set up Excel so that it can basically be my checkbook
registry
so that I don't mess up the math. So, I have a column for debits (D),
one for
credits (E) and one for the running balance (F).

Is there a forumla that I can apply to column F that will see what's in
D
and E for that row, add or subtract what's there, and then apply that
to the
previous row's F? Or do I just have to do separate forumlas for each
row...?



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default Formula Question

Why re-invent the wheel?

http://office.microsoft.com/en-us/te...186511033.aspx

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"dramajuana" wrote in message
...
That's actually exactly what I've been doing. I was just wondering if
there
was a forumla I could apply to the column so I didn't have to do that for
every row.

"tim m" wrote:

In your very 1st Row you could enter your debits and credits and this
formula
in column F: =E2-D2 (assuming your data starts in row two due to
headings.)

Then in the next cell down in column F put this formula: =F2+E3-D3
Then copy this formula down as needed in column F. It should look at
your
previous balance (in F) then add the credit and subtract the debit to
create
a new balance.

"dramajuana" wrote:

Okay, I don't really know how to word this, so I'm sorry if it sounds
awkward.

I'm trying to set up Excel so that it can basically be my checkbook
registry
so that I don't mess up the math. So, I have a column for debits (D),
one for
credits (E) and one for the running balance (F).

Is there a forumla that I can apply to column F that will see what's in
D
and E for that row, add or subtract what's there, and then apply that
to the
previous row's F? Or do I just have to do separate forumlas for each
row...?


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
Newbie Question - Subtraction Formula Question [email protected] Excel Discussion (Misc queries) 3 May 5th 06 05:50 PM
Match then lookup Tenacity Excel Worksheet Functions 9 December 3rd 05 05:30 AM
Formula Question Marcus Feldmore Excel Worksheet Functions 1 November 11th 05 03:47 PM
I have a question regarding countif formula. Fahad Farid Ansari Excel Worksheet Functions 6 October 1st 05 11:57 PM
Formula Question JDT Excel Discussion (Misc queries) 2 January 30th 05 01:17 PM


All times are GMT +1. The time now is 10:04 AM.

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

About Us

"It's about Microsoft Excel"