Hi Guys,
I am facing one query in rdlc expression.
In my example : in my report layout there is one field. i.e. Authorized By .
and condition for that field is : If there is a value in field -> approved by or Field -> approved by name then only signature will be taken.
and all this fields have mediaset data type.
i am writing below expression on rdlc but still signature is not show on report.
=iif((Fields!ApprovedBy.Value<>" ") Or (Fields!Apprv__by_Procurement_HOD_Name.Value<>" "),Fields!Authorised_By_Signature1.Value,False).
Is any way to do this.