Upgrade to Pro — share decks privately, control downloads, hide ads and more …

2025 HeroConfSD Joshua Slodki - Making Looker S...

Avatar for JoshuaSlodki JoshuaSlodki
September 25, 2025
6

2025 HeroConfSD Joshua Slodki - Making Looker Studio Work for You

Looker Studio is the best dashboarding platform that no money can buy. While it makes data visualization accessible, getting it to tell your story can be challenging.

In this session Josh will share specific examples of how you can get greater insights into your Google Ads performance using Looker Studio.
• Enhancing Google Ads data to align with your reporting needs
• Hands-on guidance to get the most out of your data using Looker Studio Blends
• Putting the pieces together for impactful reports

Avatar for JoshuaSlodki

JoshuaSlodki

September 25, 2025
Tweet

Transcript

  1. Making Google Ads and Looker Studio Work for You Joshua

    Slodki B U O Y D i g i t a l G r o u p https://speakerdeck.com/joshuaslodki @joshuaslodki @JoshuaSlodki
  2. Remember why the good Lord made your eyes… Plagiarize, plagiarize,

    plagiarize …Only be sure always to call it "Research“ ~ Tom Lehrer (RIP)
  3. CPC (calc): Cost / Clicks CTR (calc): Click / Impressions

    Conversion Rate (calc): Conversions / Clicks CPA (calc): Cost / Conversions CPM (calc): Cost / (Impressions / 1000) Step 3: Re-Calculate Standard Metrics
  4. CASE WHEN this THEN that CASE WHEN Campaign = ‘Name

    1’ THEN ‘Group 1’ ELSE ‘Catchall’ END The CASE for Classification
  5. CASE WHEN Campaign = 'Brand Campaign' THEN 'Brand’ WHEN Campaign

    = ‘NonBrand Campaign' THEN ‘NonBrand’ ELSE ‘Other' END The Basics
  6. CASE WHEN Campaign = 'Brand Campaign' THEN 'Brand’ WHEN Campaign

    = ‘NonBrand Campaign' THEN ‘NonBrand’ ELSE ‘Other' END The Basics
  7. CASE WHEN REGEXP_MATCH (Search term, "((?i)bouy)") THEN 'Core Brand' WHEN

    REGEXP_MATCH (Search term, "((?i).*buoy).*") THEN 'Brand' ELSE 'OTHER' END Exact Match vs. Contains
  8. Account Month Left Join Metrics Date Filter: This Year Account

    Month Metrics Date Filter: Last Year Y/Y Reporting
  9. CPC: SUM (Cost) / SUM (Clicks) CTR: SUM (Clicks) /

    SUM (Impressions) Conv%: SUM (Conversion 1) / SUM (Clicks) ROAS: SUM (Conversion 1 Value) / SUM (Cost) Basic Table Calculations
  10. IFNULL(input_expression, null_result) Summary: Returns null_result value if input is null

    CPC: SUM(ifnull(Cost,0))/SUM(ifnull(Clicks,0)) The IfnullTable Calculations
  11. Google Looker Studio Hacks Google Ads Scripts to Google Sheets

    Google Big Query Scripts When to Ask for AI Help