I can't quite find the answer to this. How can I evaluate an expression that contains arithmetic in SSIS. Specifically within a variable's expression field or in the Execute SQL task -> SQL statement as expression.
I have a user defined variable 'Width' that is assigned to a variable as type decimal. 388.00
and I have another variable Range
as type decimal.
I need to create a dynamic sql statement but I need these values to evaluate using the following:
@[User::Width] - @[User::Range]
This doesn't work.