Tuesday, August 9, 2022

Add multiple fields data in one control in Report using x++

 I got a requirement to add multiple fields data in one control in Report

  • Create new control in design and select the expression.
  • Write the below code based on your fields.

=First(Fields!Field1.Value, "MyTable") & vbcrlf &  
First(Fields!Field2.Value, "MyTable")  & vbcrlf &
First(Fields!Field3.Value, "MyTable")
  • Check the output.


Keep daxing!!


No comments:

Post a Comment