#' Import sheet from site tool
#'
#' @param path full filepath for the site tool
#' @param sheetname sheet name in the site tool
#'
#' @export
import_tab <- function(path, sheetname){
#import sheet from site tool
df <- readxl::read_excel(path,
sheet = sheetname,
skip = 4)
return(df)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.