can excel calculate a letter

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i need to make a spreadsheet , with it able to calculate the letter p in a
cell and total at the bottom of the sheet
 
What do you mean by "calculate the letter p"? Insert that character into a
cell? Make it part of the formula result? Just display it without making it a
part of the data?
 
well ,,, i need it to count all the (P') ... i will put a p in each cell ...
i need it to calculate it at the bottom... i messed the formula up somehow
and i dont know how to fix it right
 
=COUNTIF(B2:B58,"p")

Change the reference to the range you want to count.
 
HOW DO I CHANGE THER REFERENCE .. I M NOT SURE WHAT EXACT STEPS I NED TO TAKE
,,, OR HOW TO IMPUT THE FORMULAS
 
Rewrite the formula so instead of B2:B58, it refers to the cells you want.
 
hi there,
can u tell me how to link this result to another worksheet?
say on another sheet, i would need to calculate the Ps, but would also like
to accumulate the Ps from the previous sheet?

thanks very much for ur help!
 
Hi!

Assume you want to count "P's" on both Sheet1 and Sheet2.

The formula is in Sheet1:

=COUNTIF(Sheet2!A1:A10,"P")+COUNTIF(A1:A10,"P")

OR:

=SUMPRODUCT((Sheet2!A1:A10="P")+(A1:A10="P"))

Biff
 

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