Hello I am working on nav report and I have an empty string on my report line and I only want to display if my sales type not empty.
I went to empty string line and added visibility expression
=IIF(Fields!Sales_Line_Type.Value = " ",true,false)
It is almost working but still prints a line for the last line. I can add more line and the empty string line goes to the last line.
See the last empty line, I want that gone. How can I do that?
Answers
You can also try to check the length instead of doing a compare.
=IIF(Strlen(Cstr(Fields!Sales_Line_Type.Value)) > 2),false,true)
If you do the Help | About this report to see the dataset values null values will show up as the <> value.