I have an SQL database with skuno and qty columns with data type varchar(50) and int respectively.
Here are the columns:
skuno qty ----------------- 78654 - 100 65495 - 120 10564 - 67 64389 - 20
I want to summarize qty where skuno starts with report β6β in the rdlc report.
I use this expression, but I get an error:
=Sum(iif(Fields!skuno.Value like "6*", Fields!qty.Value, 0))
Where is the problem and how to fix it?
source share