How to access an RDLC variable from C# -
in c# rdlc file, have set report variable called test.
i have table , based on value in row. want set report variable.
below field table. check see if first letter h, , set variable 1, otherwise, displays value 2.
=iif(left(fields!stocksymbol.value,1)="h",variables!test.value = 1, "2") so happens test not equal 1, grid prints false. actually, want print false , set test variable 1.
anyone know how?
Comments
Post a Comment