I need a formula that generates a different price depending on which options have been selected in two different columns. In one column I'm using the word premium to differentiate between the options (whether or not the text contains "premium" - because there are other options in the dropdown that do not contain "premium"). Another column has a couple of options to select from (spotlight, regular), and I need to be able to generate a different number for each, depending on whether they are also premium or not. I've got two separate equations that work for these, but when I try put them together I keep getting error messages. Here are the separate equations:
=IF(AND(CONTAINS("Premium", [Which newsletter?]@row), (CONTAINS("Spotlight", Placement@row))), "1000", "900"),
=IF(AND(CONTAINS("Spotlight", Placement@row), NOT(CONTAINS("Premium", [Which newsletter?]@row))), "800", "700")
Would appreciate any help!