Hi all,
I wanted to add a live counters/progress bar to my dashboard which i will be getting from a excel sheet. The excel sheet will have just the total records number . I had to get the count and add to dashboard. Above the progress bar i am displaying "Total_counts 2021" .Below the bar i should display the counts from excel sheet. Based on the counts my bar has to be displayed. I amnt sure how much will be the count by end of this year. For say if i have 5000 count as of today and 10000 by end of October the bar has to move/increase. I am not sure how i have to do this . With the below code it isnt even printing the value from excel. Can you please help on this.
Thank you for your response. when i run your code it works fine. But I replaced mtcars data set with my excel sheet which just has total count in single cell.
data <- reactive({
read_excel('test1.xlsx')
})
It is not getting my count from excel.
So instead of having valuebox i just need the progress bar. Sorry i didnt explain it clearly.
Based on the counts my bar graph has to be displayed. I am not sure how much will be the count by end of this year. For say if i have 5000 count as of today and 10000 by end of October the bar has to move/increase. By the end of year it could be 30000. The bar graph has to move to the end when i run in December . For now i will be running my app manually.
when i cheeked sliderinput option we have to mention the end value right.
Sorry I am new to shiny..