I am trying to combine statements
The result I am looking for is to have it look at 4 different sheets and count how many times it finds the word TEST on each sheet.
The issue I have is when I use +if both sheets have to have TEST for it to count 1. If one of the sheets doesn't have TEST it won't report the sheet that does have TEST .
example:
=IF(COUNTIF(sheet1!M3:M2501,"TEST")=0,"",COUNTIF(sheet1!M3:M2501,"TEST"))+IF(COUNTIF(sheet2!M3:M2501,"TEST")=0,"",COUNTIF(sheet2!M3:M2501,"TEST"))
Is there a way to combine those (or more) so that it counts each sheet and if one if the two doesn't have the word TEST it will still return the count from the other sheet?
Thanks for any help
The result I am looking for is to have it look at 4 different sheets and count how many times it finds the word TEST on each sheet.
The issue I have is when I use +if both sheets have to have TEST for it to count 1. If one of the sheets doesn't have TEST it won't report the sheet that does have TEST .
example:
=IF(COUNTIF(sheet1!M3:M2501,"TEST")=0,"",COUNTIF(sheet1!M3:M2501,"TEST"))+IF(COUNTIF(sheet2!M3:M2501,"TEST")=0,"",COUNTIF(sheet2!M3:M2501,"TEST"))
Is there a way to combine those (or more) so that it counts each sheet and if one if the two doesn't have the word TEST it will still return the count from the other sheet?
Thanks for any help