Situation:
I have a datasource which is a list of resources together with their type (A and B) and health status (OK and ERROR). I want to do (at least) two things with this list:
- Show a table with all the details
- Show a KPI with the amount of resources for each resource type and status (actually these will be two different KPIs, one for each resource type)
So here’s the question:
Can/Should I use the same datasource for both the table and the KPIs?
If no: What is the (technical) drawback of doing so?
If yes: How?
Thanks!