Year to date

  • Thread starter Thread starter Nick
  • Start date Start date
N

Nick

Can someone please suggest how I can get the year to day column display
Nothing if there is not anything in the preceding column?

Eg... Column K is YTD. Column J is Invoice total. I figured out how to
hide the zeros in the J column... but can't figure out how to make K show
nothing until there is a figure in J.

Its a simple sheet. Just adds invoices.. and provides a YTD figure. But
looks DUMB when the last YTD figure is carried all the way down the column.

Thank you ...
 
Hi,
You did not indicate what you are using as your formula, but
=IF(SUM(J2:J17)=0,"",SUM(J2:J17)).

Thanks,
 
thanks David.
I have this formula...
=SUM(K8+J9) that displays the answer in K9.

It is just making a running total... but without having the last total
copied all the way down the page until the next entry in column J changes.

I tried this one.... =IF(K9=0),"",SUM(K8+J9))

this closer to what I am trying to achieve.


TOTAL INVOICE YEAR TO DATE
82.00 82.00
441.00 523.00
210.00 733.00
109.00 842.00






Nick.
 
I figured it out... You were right... but I just had to reverse the
elements.
I used this...

=IF(J11>0,(K10+J11),"- ")

worked great!

Thanks David.
 

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

Back
Top