Consider below query is my dataset :
DECLARE
@sample_data
table
(
Name
varchar
(50),
AgeYears
INT
,
WeightPounds
HeightInches
)
insert
SELECT
'Anna'
,84,90,60
'sarah'
,38,120,67
*
FROM
If we need columns AgeYears,WeightPounds,HeightInches horizontally stacked in one row cell :
HeightInches horizontally stacked in one row cell :
Add a Matrix , Under Rows add Name field and then Insert Row - > Inside Group - Below as shown in below image: (similarly add two more rows) Under Columns - > Data : Below is the expressions for three inserted rows :
=
"Age"
+Space(3)+
CStr
(Fields!AgeYears.Value)
"Weight"
+Space(3)+Cstr(Fields!WeightPounds.Value)
"Height"
+Space(3)+Cstr(Fields!HeightInches.Value)