I am trying to use an IF statement and I can’t get it to work either with an AND or an OR formula (or both)…
Essentially I have a calculated price for my products and I want to create a formula field for a selection of the products IF ‘Sub-Category = X OR Y’ then take ‘Calculated Price +0.1’ to add 10p to the calculated price.
I have tried this which returns a result for all products and not just those where the Sub-Category is “Coffee Retail Beans” or “Coffee Retail Ground”.
IF(OR({Sub-Category}=“Coffee Retail Beans”, “Coffee Retail Ground”), {Calc Price}+0.1)
Any other combos I try using AND statements where I have followed other similar examples on different threads, but they always come back with a formula error.
Basically I have a list of wholesale and retail products each with a calculated price and for customers who only buy retail I want to add 10p to their price, but I want this to only apply to products with a retail ‘sub-category’. If the ‘sub-category’ isn’t a retail one then I don’t want it to leave this new price blank…
I have tried following the logic of the help pages, but I’m not getting something right on this and can’t work it out.
If anyone can help me on this it would be greatly appreciated!