I want to enter a value and it will have 3 different solutions. basically if [field1]>150 put the value 20, if [field1]>100 put the value 5, if [field1]>50 put the value 2.
I thought maybe something like this but it doesnt work.
=IFF([field1]>150,20,0) or IFF([field1]>100,5,0) or IFF([field1]>50,2,0)