I am using R, and trying to create a google worksheet with today's date in the worksheet title. Here is my code so far...I don't know what I missing or if this is doable. Any suggestions or help would be appreciated.
library(googlesheets)
register_the_sheet <- gs_title("Sheet Name")
register_the_sheet <- register_the_sheet %>%
gs_ws_new(ws_title = today(), input = data, trim = TRUE, verbose = FALSE)