Hello,
I am writing custom SQL to define my table in Looker and I’m trying to filter date within the look using liquid parameters like this:
WHERE TO_DATE(ORDER_CREATED_AT) BETWEEN TO_DATE({% parameter StartDate %}) AND TO_DATE({% parameter EndDate %})
This is one of the parameters:
parameter: StartDate {
type: date
convert_tz: no
}
The problem is after I included this line, the filter suggestions for my other fields stopped showing. I went through looker documentation hoping to find a fix with no luck. If anyone can help with this it would be greatly appreciated.