Hello all,
So I am already aware that I can easily change the data type for a field by dragging in the Select tool and then changing the type. However I don't want to convert all of the numbers in my Rate column to a percent. I have another column that indicates "flat rate" or "percent" and I only want to convert the numbers that have "percent" in this other column. I tried looking for something similar to the ToString() function, but instead of ToString it would be like ToPercent. Then I could write a formula like:
IF [Flat Rate vs Premium] = "Percent"
THEN ToPercent([Rate])
ELSE([Rate])
I can't seem to find an easy way of doing this. Any suggestions?