T
T. Valko
It's not clear what you want. Can you provide a more detailed explanation?
....RagDyer said:As long as your data has a *single* alpha character, and no spaces,
you could create a "helper" column to extract the numeric data,
and then just total that helper column.
With original data starting in A1,
try this in B1:
=IF(A1>0,--REPLACE(A1,MIN(SEARCH({"a","b","c","d","e","f", "g","h","i","j","k","l","m","n","o","p","q","r","s","t","u",
"v","w","x","y","z"},A1&"abcdefghijklmnopqrstuvwxyz")),1,""),"")
So, something like this. You'll have to modify the COUNTIF part.I am trying to use the count function on text in a totally different way...
I want to put the word DUPE or some type of flag in one column based on
whether or not COUNTIF on a different column is greater than 1
So instead of having to eyeball a column to look for formatted columns
indicating that a conditional formula has been met, i'd like a way to use the
autofilter tool on a different column so that only (and all) rows with
duplicates display .. so i can work with just those.
thanks.
T. Valko said:Maybe this:
=SUMPRODUCT(--(B1:B10="O"),--(C1:C10="house"))
Note that with SUMPRODUCT you *can't* use entire columns as range references
unless you're using Excel 2007