Reputation: 499
I have an expression:
=RunningValue ( CInt(Fields!Quantity.Value) * CInt(Fields!Vol.Value),SUM, Nothing)
Initially I haven't added CInt , but I suspect the data type missmatch issue, so I tried adding with it.
In SQL side, both of these are Int type.
But, inside my deployment environment, it still showing #Error. I have no idea how to correct it. Kindly help, please. Thanks
Upvotes: 0
Views: 173
Reputation: 2638
Check for nulls.
I'm guessing you have null values coming back. Use the IsNothing function.
e.g. IsNothing(yourFieldValue,0)
Upvotes: 1