I have a SQL query that is displaying "-1" when a selection is made (this is done through an external script writing to the table) I'm wondering if anyone can help me with some code to apply to the SSRS report to auto format this to "Yes"?
Thanks in advance
Two possible solutions I can think of:
=IIf(DataSet!Field.Value = -1, "Yes", "No")
.