Looking to calc MQLs if FY = FY24 (easy part), but each region has a different conversion rate and that's where I'm struggling.
My formula is something along the lines of:
IF ([FY]@row = "FY24"), and (or ([Region]@row is "ANZ", multiply [Lead forecast]@row * 25%), ([Region]@row is "ASEAN", multiply [Lead forecast]@row * 35%), ([Region]@row is "China", multiply [Lead forecast]@row * 26%))
but it's not quite working.
this works but I'm struggling to expand it: =IF(AND(Region@row = "ANZ", FY@row = "FY24"), [Leads Forecast]@row * 0.25)
thanks~