What is in column H? Lots of numbers or just one number in say H1?
Aladin
I have already figured the percentage question out thanks for your response. I now need to know how to bring a total down from one row to another without the old data in the new row showing until I start entering the new data for that row. I have a condition statement, would a IF statement work.
Sheila,
You put things very tersely, so I have to guess.
Lets say you enter data in A from A1 on and you keep a running total in B.
In B1 enter: =IF(ISNUMBER(A1),A1,"")
In B2 enter: =IF(ISNUMBER(A2),A1+A2,"") [ copy down as far as needed ]
Is this what you want? If not, please provide more info.
Aladin