RE: Show Hierarchy Indentation in Saved Search Results
Hi, does anyone know how to replicate the hierarchy indentation visible in lists for saved search results? This is the hierarchy you see for matrix items (example below) and parent/child customers.
Not possible to have Hierarchy structure in Saved search. It’s against NetSuite default ruleset. You can do this in Custom Report.

If you use a formula, you can do it. See my comment above.
mmascitto
FYI for anyone who comes across this in the future … I ended up using a Formula (Text) field in the search results and added this formula. Depending on the record type you want to indent, you might have to change the fields. Just modify the padding to increase/decrease the indent.
CASE WHEN {parent} IS NOT NULL THEN ‘<span style=”padding-left: 10px”>’ || {name} || ‘</span>’ ELSE {name} END