I am trying to make line breaks appear on one of my reports. This RDL contains a tablix which contains a cell with the following expression as a placeholder:
=Switch(Trim(UCase(Fields!details_type_code.Value)) = "NARRATIVE", Fields!narrative.Value, Trim(UCase(Fields!details_type_code.Value)) = "NUMERIC_SCORE", Fields!numeric_value.Value, Trim(UCase(Fields!details_type_code.Value)) = "DATE_ENTRY", Fields!date_value.Value, True, Fields!test_setup_answers_caption.Value)
And for the placeholder properties, I selected "HTML - Interpret HTML tags as styles". I have done this before on many other reports. But when I view this report, the HTML tags are not interpreted correctly because the line breaks and
other formatting isn't showing. FYI, this is a NARRATIVE type field in this case. How can I fix this?
Ryan D