Filter 'date new date yyyy mm dd
A date filter!
The syntax you're looking for is:
date:new date("yyyy-mm-dd")
This will filter the dates to only show those that match the specified format, which is yyyy-mm-dd
.
Here's a breakdown of the syntax:
date:new
: This tells the filter to only consider dates.date("yyyy-mm-dd")
: This specifies the format of the dates you want to filter by. In this case, it's the ISO 8601 format, which isyyyy-mm-dd
.
For example, if you have a dataset with dates in various formats, and you want to filter it to only show dates in the format yyyy-mm-dd
, you can use this filter:
date:new date("yyyy-mm-dd")
This will return only the dates that match the specified format, such as 2022-07-25
or 1995-03-14
.