I am reading a GSheet using R Code.
temp <- read_sheet(url, sheet = "DATA", range = cell_cols("A:N"), col_types = 'c')
The temp variable is a list with a structure like follows:
Col1 Col2 .. Date
I want only get rows where a value in the Date column equals to the current date. Or even before creating temp variable read only rows with the current date.