Add fields to a group

  • The first four fields of my report repeat and the last two are unique. How can I add the first four into one group?

  • You can create an expression combining them. You have to be careful of data types.

    =Fields!OUTCOME.Value + " " + Fields!OUTCOME_NAME.Value + " " + CStr(Fields!MEMO_FEEDBACK_ID.Value)

    The ID field has an integer data type, so had to be converted to a string.

  • Thanx.

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply