I have an SSRS report with 2 datasets. dataset1 has a value called Party_Number
and dataset2 has a value called Name
.
I am pulling the name from a Lookup:
Lookup(Fields!MODIFIED_IPP.Value,Fields!IPP.Value,Fields!Trustee_Name.Value,"DataSet2")
However I want to hard code 2 values because the IPPs do not exist in dataset1.
For example I would like to say IIF
the IPP
in dataset1 equals 111 then use the name "Jane Doe" for Trustee_Name
else use the above Lookup expression.
Is this possible?