Automatic Pivot Table Refresh

A super annoying thing about Excel is that pivot tables require manual refreshes. This can easily be forgotten by a user that updates source data in a workbook and expects …

PostgreSQL to join Array column

This is the PostgreSQL to pull all the Rules and associated Journey information for a single journeyid. Learned how to join an array column (actions.rules) from Gary Seiling’s website. SELECT …

Development Tools

JSON Formatter: https://jsonformatter.curiousconcept.com/ This makes our JSON data retrieved from APIs super easy to read. Observepoint Javascript Regex Tester: http://regex.observepoint.com/ Helpful to test Javascript regex

ETL for ObservePoint API Journey Rules

Create the table in our PostgreSQL database: CREATE TABLE public.rules (     fromtemplate BOOLEAN,     rulename text COLLATE pg_catalog."default",     checktimes INTEGER,     accountid INTEGER,   …