If and nested Sumif error

G

Guest

Hi
I am trying to automate my bank reconcilliation programme,

Column F = Receipts
Column G = Payments
Column I = Current Balance (book Balance)
Column J = Item cleared Bank (=3 formated to a Tick)
Column K = Current Bank Balance

My formula is =IF(J175<>3,SUMIF(J$2:J175,"=3",F$2:G175),0)

The formula is accepted by excel as valid, but the result only includes
items in column F, column G is ignored.

I could overcome this with a hiden column which is the sum of F & G, but
this is not advisable on a sheet with so many line.
The formulas almost there, I would just like to complete it
Thanks
 
S

Sandy Mann

Try:

=IF(J175<>3,SUMIF(J$2:J175,3,F2:F175)+SUMIF(J2:J175,3,G$2:G175),0)


--
HTH

Sandy
In Perth, the ancient capital of Scotland

(e-mail address removed)
(e-mail address removed) with @tiscali.co.uk
 
G

Guest

Hi Sandy

You formula works a treat I have now been able to delete three columns of
formulars, on each page, there are 23 pages, and over 300 lines on each
my files a fraction of the size

Thanks Joco
 
G

Guest

excelent said:
TRY
=IF(J175<>3,SUMPRODUCT((J2:J175=3)*(F2:G175)))

Formula works great I now have to different formulars which work. I have
been able to delete three colomns of formular on each page, there are 23
pages and each has over 300 lines

Thanks again Joco
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

I need to do a SUMIF AND 3
Conditional functions 3
sumif statement 1
SUMIF formula getting error 1
If Statement 2
Narrow range in Sumif formula 2
Repost - Using SUMIF and COUNTA 5
SUMIF and the AND Function 2

Top