For the following Query
SELECT *
FROM (VALUES ('England','London',9787426),
('England','Manchester',2553379),
('Scotland','Edinburgh',452194),
('Scotland','Glasgow',1168270),
('Wales','Cardiff',447287)) V(Country, City, Population)
Creating a report from the Report Wizard (with the following options)
constructs a report like
(Which Robert Bruckner calls "headerless" here)
When confronted with such a report structure is there any simple/non flaky way to convert it to the format below (with the Country header outside of the tablix body)?
i.e. without needing to delete the existing group, then re-adding it?