Nested parameters to return one value
I am building a report that uses a nested parameter. This report will run on a dashboard within Guided Reporting if it makes any difference. My parameters are Member List types.
EntityParam1 uses a member filter of E#Corporate.ChildrenInclusive. This is controlled by a combo box on the dashboard. Let's pretend the user selects E#Legal as the value for the combo box, one of the children of E#Corporate.
EntityParam2 has a member filter of |!EntityParam1!|.ChildrenInclusive.Children
The member filter I want it to return is E#Legal.ChildrenInclusive.Children
When I run this nested parameter, it runs E#Corporate.ChildrenInclusive.ChildrenInclusive.Children, which throws an error at some point.
How can I use EntityParam1 to only return the E#Legal member for my nested filter?
I would think the answer lies within a literal parameter but haven't found a method that automatically uses the selected value of my first parameter.
Thanks in advance.