I have two custom lists. Based on what is randomly chosen from the first list I want to pick the same item from the second list. For example, first list is Priority Mail, UPS Standard Delivery
and second list is USPS,UPS
Both are set to be empty 50% of the time.
So, if Mockaroo chooses Priority Mail
for an field, I need the second field to say USPS
I tried
if class == 'Priority Mail' then 'USPS' elsif class == 'UPS Standard Delivery' then 'UPS' end
But it fails with a syntax error.