Reputation: 159
I got the above error.
I am trying to accomplish below conditions.
a. If EpicLocationKey = RevenueLocationKey then output EpicLocationKey = EpicLocationKey
b. If RevenueLocationKey in (0,1) then output EpicLocationKey = EpicLocationKey
c. Else output EpicLocationKey = RevenueLocationkey
[EpicLocationKey] == [RevenueLocationKey] ? [EpicLocationKey] : [RevenueLocationKey] IN (0, -1) ? [EpicLocationKey] : [RevenueLocationKey]
I try to test out the first condition. It is showing the similar error messages
Upvotes: 0
Views: 31
Reputation: 31785
Names in SSIS are case-sensitive. It can't find EpicLocationkey
probably because it's EpicLocationKey
like you have it in the middle part of the expression.
Upvotes: 1