Platform Analytics Dashboard-Prevent visualizations from loading until interactive filter is selcted
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2026 09:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2026 09:50 PM
For Requirement #1
A common approach is to design the indicator/data source so that it returns no records when the user filter is empty.
For example:
- Add a condition that expects a valid user value.
- If the interactive filter is blank, the query returns zero records and the visualization displays "No data available".
This is generally handled at the Indicator Source/Data Source level rather than through the Interactive Filter configuration itself.
For Requirement #2 (Exclude Service Accounts)
The recommended approach is to apply a reference qualifier/filter on the interactive filter source so that only human users are returned.
Typical filters include:
active=true
AND user_nameNOT LIKEsvc_
AND user_nameNOT LIKEsystem
Or, even better, filter based on:
- User criteria
- Department
- Employee type
- Role membership
For example:
active=true^employee_numberISNOTEMPTY
This is usually more reliable than naming conventions.
✅ Issue resolved? → Mark as Correct
Found value? → Mark as Helpful