I have a select drop down field with number rating from 1 to 10, 1 - 2 - 3 - 4 .. etc... . I want to filter all the records that have a rating bigger than, let's say 6, but there's no number operators (">", "<") for the select field.Is there a s...
I tried TheTimeSavingC solution and it works perfectly. My select field is called "Rating", I created a formula field called "Rating Formula" and wrote in the expression box "VALUE(Rating)". The function "VALUE" is needed to convert it to a number. ...