I have a Matrix Report built in SSRS, I have it grouped on the ID for the rows and grouped on the FirstName & LastName for the columns to create the needed report, however the only thing that I need to get to work is the to indent the second and third rows to start at the first column instead of after the last column of the first row as showing, how can I get that to work please?
Thanks in advance!


Your problem is that you have created a column group based on FirstName + LastName. This will create a new column for each instance of this (so 1 column for each record as they are all unique).
What you need to do is assign a column number for each name with each ID.
Here I have reproduced your sample data and then assigned a value to
ColNfor each unique name within each ID.This gives us the following output.
You can now use
ColNin you column group instead of the expression you now have.This will give you the desired output.