I am currently using this formula =IF(COUNTIF($H26:$AI26,AM$2)>0,COUNTIF($H26:$AI26,AM$2),"")
to look at a range of text and count all instances of matching characters in my header row.
I have to manually count Capital letters currently and manually deduct them from the lowercase count.
I can visualize using LEN to count the characters and looping Find which is case sensitive x times per word
but when I try this i get ####.
Header row character strings - 0,1,2,3(etc),a,b,c(etc),A,B,C(etc)
---------------------------------------------------------------
122 Meeting Room Fifth floor - 0,1,2,0(etc),0,0,0,(etc),0,0,0(etc)
202 Consultation Room - 1,0,2,0(etc),1,0,0,(etc),0,0,1(etc)
---------------------------------------------------------------
Totals - 1,1,4,0(etc),1,0,0,(etc),0,0,1(etc)
A little background - we laser cut letters with mounting holes. Every character has a unique mounting pattern so when we process a job we count up all instances of the same letter and process them all at the same time. An uppercase and lowercase letter have different mounts so we need to count them separately. My manual method has worked for a long time but orders with 1000+ letters get a bit confusing.
Any help is appreciated.
Bookmarks