In SSRS I want to indent certain rows when they start with e.g. 'aa'. See this example:

What is the best practice in this case? As I don't have a parent-child situation here (to use recursive hierarchy group), do I have an option e.g. via the properties to set something like an IIf to solve this? If yes, could you please provide some information where to set this?
Every info is welcome! I'm new to SSRS.
This is simple to do...
Click on the cell that you want to indent.
In the properties panel, expand the
Indentproperties and then click the drop-down in theLeft Indentproperty and chooseExpression.Then set the expressions to something like
You could do this with an
IIFexpression but if you need to make it more flexible than 1 or two cases thenSWITCHis much easier to read/manage.All we are doing here is checking the left 2 characteras of the
FieldIwantToCheckfield and setting an indent value respectivley. If none of the criteria match, the finalTrue, Nothingacts like anELSEand leaves the property as the defaultNothingvalue.