Useful for pulling information about the template, whether It be the Operating Unit (OU), Period, template version, or type, eg wide or long.
hfr_extract_meta(filepath, meta_type = "type")
filepath to sumbitted template
type of meta data requesting: ou, period, version, type (default)
if (FALSE) {
#identify whether template is long or wide
filepath <- "~/WeeklyData/Raw/KEN_Weekly.xlsx"
hfr_extract_meta(filepath, meta_type = "type")
#identify period
hfr_extract_meta(filepath, meta_type = "period")
#identify OU
hfr_extract_meta(filepath, meta_type = "ou") }