This is the code I created for a new column and it worked just fine - but it's more of an If/Then. I'm now working with a different data set and I want to again create a new column that looks at 4 other columns from the data I'm querying and if each, all four of the columns, meets the criteria I have then I want the new column to reflect YES. Even if only one of the columns does does meet the criteria then Other, which would be NO. case when BRWR_ALL_DIM.WIM_IND = 1 then 'PWM' when BRWR_ALL_DIM.WIM_IND = 2 then 'WFA' when BRWR_ALL_DIM.WIM_IND = 3 then 'WFA & PWM' else 'Other' end
... View more