I have some logic that I am trying to do in SAS but not sure how to do this.
If Component_Product_ID is missing then ICIS_Product_ID else Component_Product_ID. This is the definition (calculation) for a field called Pseudo_Pr_ID.
I have some SQL from another program that uses DECODE:
DECODE(T3."COMPONENT_PRODUCT_ID",NULL,T3."ICIS_PRODUCT_ID" ,T3."COMPONENT_PRODUCT_ID")
Would a CASE statement work? If so, how would the syntax be.