I have looked through this thread and can't figure out what I am doing wrong...
In quiz results, for scoring, I want column 1A to flip the numbers of Column 1.
1=5, 2=4, 3=3, 4=2, 5=1
=IF([1]@row = 1, 5, IF([1]@row = 3, 3), IF([1]@row = 2, 4), IF([1]@row = 4, 2), IF[1]@row = 5, 1)
How do I get this to work?