ASKER
ASKER
ASKER
Microsoft SQL Server is a suite of relational database management system (RDBMS) products providing multi-user database access functionality.SQL Server is available in multiple versions, typically identified by release year, and versions are subdivided into editions to distinguish between product functionality. Component services include integration (SSIS), reporting (SSRS), analysis (SSAS), data quality, master data, T-SQL and performance tuning.
TRUSTED BY
I would have to say this is a lot easier to achieve by adding a flag to the query to indicate whether there needs to be a group total or not.
So something like this;
Select Id, Name, Hours, GroupTrigger = (Select Count(*) From MyTable As MT2 Where MT1.Id= MT2.Id)
From MyTable As MT1
There are other SQLL approaches that may be better depending on your query but it's the way to go.
In your Group rows "Visibilty|Hidden" property you would put a formula like;
=(Fields!GroupTrigger.Valu
It will return true if only one record exists for that Name (well Id really) which will hide the Total.