Ask your question
Report

Excel - Formula in text count [Solved]

Sam - Mar 5, 2010 6:33am GMT - Last answer on Aug 23, 2010 7:41am BST sk
Hello,

I Need a formula in text count For Example
P=1

P+P+P+P+P= 6
What is the formula in excel please defineConfiguration: Windows XP / Internet Explorer 6.0
Read more ...
Add comment

Best answers

 Excel formula compare text values - Forum

Best answer: Hi Use in Cell D1 the formula, =VLOOKUP(A1,$B$1:$C$9,2,FALSE) Do let me know If it helps...

 Excel formula find text range - Forum

Best answer: Suppose your data is from A1 to A100 or onward ..... then in B1 copy this formula and drag it down .... =IF(ISERROR(SEARCH("*apple*",A1,1)),"","A ")

 Excel formula find text in worksheet range - Forum

Best answer: Thanks for yoru kind words for me. Try this formula and do let me know =IF(ISERROR(INDEX('RAW DATA'!H:H,(MATCH(SheetA!D10,'RAW DATA'!A:A,0)))) ,"Not Found",ISERROR(INDEX('RAW DATA'!H:H,(MATCH(SheetA!D10,'RAW DATA'!A:A,0)))))

 Excel formula check text is the same in two columns - Forum

Best answer: user vlookup formula if you have same name in second column =vlookup(select any one name in column A prefer first name , then select full range of column B then ,1,FALSE)

 Excel formula certain text in a cell then place a number - Forum

Hello, I need a formula to sum the values in a range of cells but only for the cells that have a specific text in a completely different range of cells. For example, sum the values for H8:I12 but only if the text in C8:C12 EQUALS "CRM" I have 5...

 Can i pass arguments to an excel formula as text? - Forum

Best answer: Hello BEAR833, I think you will need indirect referencing, a tricky way browsing through your sheets. I can not tell you if there is a more easy way, below is my tip. First you need a list of your worksheets. For that, I wrote a simple Visual

 Excel Formulas for Day Count - Forum

Best answer: How can count dates between 2 cells in excel, 1jan - 2jan to count as 2 days.

 Excel formula what proportion of a text list - Forum

Best answer: = 100 * K392 / A392 or you can use = K392 / A392 and format the cell to be a %age

 Excel - Formula in text count - Tips

Excel - Formula in text count Issue Solution Note Issue I Need a formula in text count For Example P=1 P+P+P+P+P= 6 What is the formula in excel please define? Solution Try with this formula, I supposed the text is into A1...

 Excel formula needed to count a list of names - Forum

Best answer: suppose your data is like this from A1 to A9(note colufmn heading -this is necessary) names a a a a s s d d click data(menu)-filter-advancedfilter choose radio button at the top "copy to another location" against list range click the icon at

 Excel Formula output text which includes date - Forum

Best answer: format those resulting cells as Date and choose any one on the right side excel takes the dates as integer from january 1, 1900 depending upon the ocnfiguration in you compuer. see help "about dates and datasystems"

 Excel formula needed to count a list of names [Résolu] - Forum

Suppose your data is like this from A1 to A9(note colufmn heading -this is necessary) names a a a a s s d d click data(menu)-filter-advancedfilter choose radio button at the top "copy to another location" against list range click the icon at the right...

 Excel - Formula to count the like number instances that occur in - Tips

Excel - Formula to count the like number instances that occur in the column Issue Solution Note Issue I need some help. I would like to find out how many occurrences of the same number occur in a column with in excel. Example:...

 Excel formula to get the cell with the text - Tips

Excel formula to get the cell with the text Issue Solution Note Issue I need an excel formula to find the part of the text in the range of cells and display the values. E.g.: cell's A1 :A25 has text in it, And B1 :B25 has values in...

 Excel formula to count a list of names - Tips

Excel formula to count a list of names Issue Solution Note Issue This is probably an easy one for the pro's, basically i have a list of names that will change as reports are generated. The report will include the same name...

Sort by :   Vote | Date | Date descending 3 answers
Best answer
+1
moins plus
Hello,

Try with this formula, I supposed the text is into A1 :

=SUM(LEN(A1)-LEN(SUBSTITUTE(A1,"P","")))


Best regards
Add comment
+0
moins plus
if you want to count the cell, then you can use COUNTA function

Below example count number of cells that are not blank
=COUNTA(A1:A10)
Add comment
+0
moins plus
=counta(select range)
Add comment