Hi, is this possible, I input data in a csv, and after that I filter it (date, time … ) to use that data filtered in a dash board I already have made with pages and tabs?
This example is for exactly the situation you’re looking for.
- Create a callback that filters the CSV, and outputs the filtered data to a
dcc.Store
- Use the
dcc.Store
variable from the first step as anInput
orState
throughout the app.