The app works perfectly, but having these filters on would be a great help. There are many tables created from renderTable. Some contain numeric values and others are words, so I need the filter to know whether to go A to Z or 1 to 100, etc...
This is my first time submitting something to the community, so if I need to format my question differently please let me know.
Below is an example of one of the renderTable outputs.
output$subdatateam <- renderTable({
team = df %>% filter(`Ship Date` >= input$daterange[1],
`Ship Date` <= input$daterange[2]) %>%
group_by(Team) %>%
summarise(Volume = sum(Volume), Revenue = sum(Revenue), Margin = sum(Margin), `Margin %` = sum(Margin) / sum(Revenue),
`% to Market` = sum(`Line haul`) / sum(Market), `Rev / Load` = sum(Revenue) / sum(Volume), `Mar / Load` = sum(Margin) / sum(Volume), n=n()) %>%
na.omit
})