I am trying to count the number of letter "A" in range E6:AI6 from tab name "FINAL" in different tab name "FINAL DATA"
I basically want to look up 'FINAL'!E6:AI6
, This is what I have tried:
=COUNTIF(INDIRECT("'FINAL'!E6:AI6" & E6 & ":A" & AI6),1)
but it is returning 0 always but in a particular range, there are 5 cells whose value is "A"
=COUNTIF(INDIRECT("'FINAL'!E6:AI6" & E6 & ":A" & AI6),1)
It should return 5 instead of 0 cell where I am applying above function