New Member
Since ‎07-08-2020
‎05-20-2023

My Stats

  • 21 Posts
  • 1 Solutions
  • 3 Likes given
  • 7 Likes received

kH24762iED's Bio

Badges clathrop Earned

View all badges

Recent Activity

I have the following LookML code(select max(${origin_event_date}) from ${origin_table_name}))It should be generating the following SQL. (select max(date) from looker-pop-block-testing.looker_pop_block_testing.test_pattern)Instead, it generates this (...
We just released a new period over period block for Looker. It has a bunch of features. It was developed for Redshift syntax, but should work for Snowflake and Google Big Query. If anyone is interested in using it for those systems and can work with ...
We have a filter that looks like this filter: date_filter { type: date sql:date between {% date_start date_filter %} and {% date_end date_filter %};; }This filter is used in part of a CTE that looks like this vet as ( select t.veterinarian -- , r.pro...
I have a period over period block that makes use of a fair amount of Liquid syntax to cut down on the amount of rendered SQL. It occured to me that I don’t know if dimensions that are not used, still execute their Liquid syntax. If so, it would make ...
We have a Redshift database set to UTC. When we run a report localized to something like American/Chicago, it seems like Looker is putting the timezones backwards.Here is an example copied out of the SQL. CONVERT_TIMEZONE('America/Chicago', 'UTC', TI...