I have a column named “Weights” with values like “1.0” or “2.2” that I use for basic item ordering.
x.0 = default item
x.1 = first optional item
x.2 = second optional item
eg:
1.0 - Include
2.0 - Include
3.0 - Include
3.1 - Exclude
3.2 - Exclude
4.0 - Include
5.0 - Include
I’m using a Rollup field to add up prices, but it’s including all the optional items in the sum, where I only want the default items included.
My thought was "Create a formula field that outputs the Total Price field, but only if the far-right character of the value of the Weights column was a zero, if it’s anything other than zero, then set the price to “0” instead… Then create a rollup field on that “Total Prices Without Optional Values” column…
Can’t figure out how to get RIGHT() to show me the right-most character of the Weights field so far…