looker-studio

Skill for creating dashboards and calculated fields in Google Looker Studio (formerly Data Studio). Use when the user: - Needs help with formulas or calculated fields in Looker Studio - Wants to connect Looker Studio to PostgreSQL/Supabase - Needs to create visualizations or dashboards - Asks about function syntax (CASE, IF, DATETIME, etc.) - Wants to convert timezones or format dates - Needs to blend data from multiple sources

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "looker-studio" with this command: npx skills add munolabs/skills/munolabs-skills-looker-studio

Looker Studio Skill

Complete guide for creating dashboards and calculated fields in Google Looker Studio.

Main Workflow

  1. Identify the task type:

    • Create calculated field → See function references
    • Connect database → See postgresql-connection.md
    • Create visualization → Follow best practices
  2. For calculated fields:

    • Determine the function type needed (date, text, aggregation, logic)
    • Check the corresponding reference
    • Test the formula in Looker Studio

Quick Syntax Reference

Most Used Functions

-- Subtract time (e.g., convert UTC to local)
DATETIME_SUB(date_field, INTERVAL 5 HOUR)

-- Simple conditional
IF(condition, value_if_true, value_if_false)

-- Multiple conditions
CASE
  WHEN condition1 THEN result1
  WHEN condition2 THEN result2
  ELSE default_result
END

-- Default value if NULL
IFNULL(field, 'default_value')

-- Aggregations
SUM(field), AVG(field), MAX(field), MIN(field), COUNT(field)

-- Text
CONCAT(text1, text2), UPPER(text), LOWER(text)

-- Format date
FORMAT_DATETIME('%d/%m/%Y %H:%M', date_field)

Common Timezones

TimezoneCode
US EasternAmerica/New_York (UTC-5/-4)
US PacificAmerica/Los_Angeles (UTC-8/-7)
UKEurope/London (UTC+0/+1)
Central EuropeEurope/Berlin (UTC+1/+2)
Australia SydneyAustralia/Sydney (UTC+10/+11)
IndiaAsia/Kolkata (UTC+5:30)
JapanAsia/Tokyo (UTC+9)

Timezone Conversion

-- Simple method: subtract/add hours
DATETIME_SUB(utc_field, INTERVAL 5 HOUR)

-- With FORMAT for display
FORMAT_DATETIME('%Y-%m-%d %H:%M', DATETIME_SUB(field, INTERVAL 5 HOUR))

PostgreSQL/Supabase Connection

Recommended configuration:

  • Host: aws-X-REGION.pooler.supabase.com
  • Port: 5432 or 6543
  • Username: user.PROJECT_REF
  • SSL: Disabled (if causing certificate issues)

Limitations:

  • Maximum 150,000 rows per query
  • Only public schema
  • ASCII headers only

Available References

  • date-functions.md - DATETIME_ADD, DATETIME_SUB, EXTRACT, FORMAT_DATETIME
  • text-functions.md - CONCAT, SUBSTR, REPLACE, REGEXP_EXTRACT
  • aggregation-functions.md - SUM, AVG, COUNT, MAX, MIN, PERCENTILE
  • logic-functions.md - CASE, IF, IFNULL, COALESCE, operators
  • conversion-functions.md - CAST, data types
  • postgresql-connection.md - PostgreSQL/Supabase configuration
  • resources.md - Courses, tutorials, official documentation

Best Practices

  1. Data source level calculated fields for reusability
  2. Use IFNULL to handle null values
  3. Avoid division by zero with NULLIF(divisor, 0)
  4. Limit data for better performance
  5. Use filters before complex aggregations

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

OpenClaw Skill Growth

Make OpenClaw Skills observable, diagnosable, and safely improvable over time. Use this when the user wants to maintain many SKILL.md files, inspect repeated...

Registry SourceRecently Updated
181Profile unavailable
General

Find Skills for ClawHub

Search for and discover OpenClaw skills from ClawHub (the official skill registry). Activate when user asks about finding skills, installing skills, or wants...

Registry SourceRecently Updated
2911Profile unavailable
General

Skill Listing Polisher

Improve a skill's public listing before publish. Use when tightening title, description, tags, changelog, and scan-friendly packaging so the listing looks cl...

Registry SourceRecently Updated
1130Profile unavailable
General

Skill Priority Setup

Scans installed skills, suggests L0-L3 priority tiers, and auto-configures skill injection policy. Use when: setting up skill priorities, optimizing token bu...

Registry SourceRecently Updated
2510Profile unavailable