Let me simulate a similar scenario.
I am creating a report on eFashion universe. I have 2 blocks: Sales by States and Sales by Product. I have two optional prompt on States and Products.
- When States prompt is answered, we want to show sales by states.
- When Product prompt is answered, we need to show sales by Product.
- When no prompt is answered, we need to show nothing.
- When all prompts are answered, we need to show sales by states.
For state wise sales chart, provide the hiding condition as
=Not(IsPromptAnswered("State"))
For product wise sales chart, provide the hiding condition as
=Not(IsPromptAnswered("Product")) Or IsPromptAnswered("State")