Hi-
I created a formula that turns the 5 Star rating system into a points value.
1 Star = 10 points, 2 Stars = 20 points, etc.
I want to combine all those IF statements into each row so that it auto returns the correct value. I've tried:
=IF(Rate@row = "One", "10”),(Rate@row = "Two", "20”),(Rate@row = "Three”, “30”),(Rate@row = “Four”, “40”),(Rate@row = “Five”, “50")
But I get unparsable. Thanks in advance.