I have a list of names in Column A. Some names end with an asterisk "*". Is there a way to count how many names in a specific range have an asterisk on the end and display the total number? I tried:
SUM(RIGHT(A1:A5,1)="*")
This didn't work. I also tried:
SUM(IF(RIGHT(A1:A5,1)="*",1,0))
The second one tells me that I get a value of 3 when I check it in the formula wizard, which is correct, but the cell in the spreadsheet gives me the error value "#VALUE!" Any suggestions?
.....Column A
1.......Joe
2.......John*
3.......Steve*
4.......Harry
5.......Paul*
6.......3
SUM(RIGHT(A1:A5,1)="*")
This didn't work. I also tried:
SUM(IF(RIGHT(A1:A5,1)="*",1,0))
The second one tells me that I get a value of 3 when I check it in the formula wizard, which is correct, but the cell in the spreadsheet gives me the error value "#VALUE!" Any suggestions?
.....Column A
1.......Joe
2.......John*
3.......Steve*
4.......Harry
5.......Paul*
6.......3