I have an MS Access formula which I want to use in SSIS package Derived column
GPN: iif(isnull([resouce GPN]),iif(Len([resource])>11,Right([Resource],11),""),[Resource GPN])
The formula reads, if "Resource GPN" column is blank then take last 11 digits of string from "Resource" column.