I'm brand new to SSRS and could use some help: is it possible to nest a lookup
expression inside an iif
statement? I have a web form with checkboxes and would like to change the answer text from "True" and "False" to "Agree" and "Disagree", but because I'm using a lookup
expression to get the responses, I can't use a simple iif
statement. When I try to use two Expressions, I get an error message. Here are my expressions:
=iif(ReportItems!Textbox70.Value = true, "Agree", "Do not agree")
=Lookup(22, Fields!QuestionID.Value, Fields!ResponseDisplayText.Value, "ApplicationData")