Forum Discussion
Count - simplified for added columns
- Apr 15, 2024
LauraDaisy don't understand why you would address every single cell in a closed range. And you have duplications in there as well. Is that intended?
I you just want to count the number of numeric entries in a range and add the letter "V" in the beginning use:
="V"&COUNT(J2,L2:Z2)
and make the range L2:Z2 large enough so that you can enter more versions later on. "V0" would mean "None".
If returning "None" is important, than you could use this:
=IF(COUNT(J2,L2:Z2),"V"&COUNT(J2,L2:Z2),"None")
LauraDaisy don't understand why you would address every single cell in a closed range. And you have duplications in there as well. Is that intended?
I you just want to count the number of numeric entries in a range and add the letter "V" in the beginning use:
="V"&COUNT(J2,L2:Z2)
and make the range L2:Z2 large enough so that you can enter more versions later on. "V0" would mean "None".
If returning "None" is important, than you could use this:
=IF(COUNT(J2,L2:Z2),"V"&COUNT(J2,L2:Z2),"None")