I have this expression set to a textbox's value in a report:
(=IIf(Fields.Implemented = True, CStr(Completed), CStr(Not Completed) ))
This is showing up as text in my report as a string. I also tried putting the strings as 'Completed' rather than CStr(Completed) which also didn't work.
What I want is "Completed" to be displayed when Fields.Implemented resolves to true. "Not Completed" when Fields.Implemented resolves to false. Can someone help me form this expression? Thanks in advance to anyone who replies