I am looking to assign a value to words, then total the value. I am only coming up with solutions that add one value and not all of them.
Cat=1
Dog=2
Bird=3
Lizard=4
Example:
<tbody>
A "String"
B "Solution"
1
Cat Dog Bird
6
2
Dog
2
3
Bird Lizard
7
4
Cat Dog
3
</tbody>...