I have a table defined in AX like follows:
I am trying to create an SSRS report using a query to create the DataSet and as Design - PrecisionDesign.
I got this until now:
with groupings :
I would like to visually replicate this query:
SELECT Country
, City
, FirstName
, SUM(AGE)
FROM TABLESSRSGROUPING
GROUP BY Country, City, FirstName
Resulting in:
You should only need to group once within the first Row Grouping.
In the Group Properties - group on [Country] then ADD [City] then ADD [Name]