woodward,
Maybe I'm not doing something right or I'm still to new at this but I tried something like you suggested and it didn't seem to work. Here is the input on the ui side:
selectInput(inputId = "selectSegment", "Select a question segment", NULL, multiple = TRUE,
selectize = TRUE, width = "100%"))
Here is the event on the server side(without the change you suggested) that I want to kick off once the user is done making the selections from this:
outputTable <- reactive({
if(!is.null(input$selectSegment)){
What would you put in the if statement?