I have issues forming expressions especially If/Then! I've made several iterations of this but here is the last one I made. Can someone help me correct it?
IF [DMA Name]="Multi" && [Vendor State] = "ME" THEN "Maine" ELSEIF [Vendor State] = "NH" THEN "New Hampshire"
ELSEIF [DMA Name] ENDIF
Thanks!
Solved! Go to Solution.
Hi @NicoleMA
Try changinge the last "ELSEIF" to a catch-all "ELSE" ...
IF [DMA Name]="Multi" && [Vendor State] = "ME" THEN "Maine" ELSEIF [Vendor State] = "NH" THEN "New Hampshire" ELSE [DMA Name] ENDIF
Duplicate answer removed.
Thanks!