<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[Stories by datadice on Medium]]></title>
        <description><![CDATA[Stories by datadice on Medium]]></description>
        <link>https://medium.com/@datadice?source=rss-2851976d5ad7------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/1*7sEjcO4Oy7fCSRFlzHu4lw.png</url>
            <title>Stories by datadice on Medium</title>
            <link>https://medium.com/@datadice?source=rss-2851976d5ad7------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Wed, 27 May 2026 14:02:39 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@datadice/feed" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[Latest Updates on Google Data Analytics (April 2026)]]></title>
            <link>https://datadice.medium.com/latest-updates-on-google-data-analytics-april-2026-a69defe17dd7?source=rss-2851976d5ad7------2</link>
            <guid isPermaLink="false">https://medium.com/p/a69defe17dd7</guid>
            <category><![CDATA[google-analytics]]></category>
            <category><![CDATA[bigquery]]></category>
            <category><![CDATA[google-data-studio]]></category>
            <category><![CDATA[data-agents]]></category>
            <category><![CDATA[graph-database]]></category>
            <dc:creator><![CDATA[datadice]]></dc:creator>
            <pubDate>Mon, 11 May 2026 15:28:10 GMT</pubDate>
            <atom:updated>2026-05-11T15:28:10.649Z</atom:updated>
            <content:encoded><![CDATA[<h4>The highlights of the updates on BigQuery, Data Studio, Google Analytics (GA) &amp; Google Tag Manager (GTM). By <a href="https://www.linkedin.com/in/alexander-junke-461375201/">Alexander Junke</a></h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/640/1*Bru9D69GuEdNDO49ZTzTKw.gif" /></figure><p>In this blog post, I want to summarize the new releases from the Google tools that we use daily in <a href="https://www.datadice.io/">datadice</a>. Therefore, I want to give an overview of the new features of BigQuery, Dataform, Data Studio, Google Analytics, and Google Tag Manager. Furthermore, I will focus on the releases that I consider to be the most important ones, and I will also name some other changes that were made.</p><p>If you want to take a closer look, here you can find the Release Notes from <a href="https://cloud.google.com/bigquery/docs/release-notes">BigQuery</a>, <a href="https://cloud.google.com/dataform/docs/release-notes">Dataform</a>, <a href="https://cloud.google.com/looker-studio/docs/release-notes">Data Studio</a>, <a href="https://support.google.com/analytics/answer/9164320?hl=en">Google Analytics</a> &amp; <a href="https://support.google.com/tagmanager/answer/4620708?hl=en">Google Tag Manager</a>.</p><h3>BigQuery</h3><h4>Renamings</h4><p>Google implemented significant naming changes across several data and analytics services. These updates primarily affect the user interface branding, while technical resources such as APIs, client libraries, CLI commands, and Identity and Access Management (IAM) roles retain their original names.</p><p>The key rebranding changes include:</p><ul><li>Dataproc to Managed Service for Apache Spark</li><li>BigLake to Google Cloud Lakehouse (BigLake metastore has been renamed to the Lakehouse runtime catalog)</li><li>Dataplex Universal Catalog to Knowledge Catalog</li><li>Looker Studio to Data Studio (The website and endpoint have changed from lookerstudio.google.com to datastudio.google.com)</li></ul><h4>BigQuery Graph</h4><p>BigQuery is a Graph database too now! And yes, it is worth its own blogpost!</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*NdDnL3T_2WJ_i2sURj5AsA.png" /><figcaption><em>Example of a GQL Query result</em></figcaption></figure><p>On a broad scale, you have the following opportunities:</p><ul><li>Create graphs directly from the existing tables</li><li>Use the Graph visual modeler to build your graphs entirely in the UI</li><li>Use GQL (Graph Query Language) to build up your Graph</li><li>Visualize the Graph in a notebook or in BigQuery Studio</li><li>Using Conversational Analytics on your Graphs</li></ul><p>With GQL, you can do the following:</p><p>Setting up the nodes and edges of existing tables:</p><pre>CREATE OR REPLACE PROPERTY GRAPH graph_db.FinGraph<br>  NODE TABLES (<br>    graph_db.Account,<br>    graph_db.Person<br>  )<br>  EDGE TABLES (<br>    graph_db.PersonOwnAccount<br>      SOURCE KEY (id) REFERENCES Person (id)<br>      DESTINATION KEY (account_id) REFERENCES Account (id)<br>      LABEL Owns,<br>    graph_db.AccountTransferAccount<br>      SOURCE KEY (id) REFERENCES Account (id)<br>      DESTINATION KEY (to_id) REFERENCES Account (id)<br>      LABEL Transfers<br>)</pre><p>Querying the graphs and visualizing them:</p><pre>GRAPH graph_db.FinGraph<br>MATCH<br>  p = ((person:Person {name: &quot;Dana&quot;})-[own:Owns]-&gt;<br>  (account:Account)-[transfer:Transfers]-&gt;(acount2:Account)&lt;-[own2:Owns]-(person2:Person))<br>RETURN<br>  TO_JSON(p) AS path;</pre><figure><img alt="" src="https://cdn-images-1.medium.com/max/640/1*Bru9D69GuEdNDO49ZTzTKw.gif" /><figcaption><em>Investigating graph result</em></figcaption></figure><p>To create a Graph in the UI, you need to start here</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/890/1*hwNSx-UECtPdU5IHUlP-CQ.png" /><figcaption><em>Creating a new Graph in the UI</em></figcaption></figure><p>But this topic is too huge to handle in a short section. The rest you need to find out on your own. Maybe we will write a separate blog post about it.</p><p>A starting point for further research can be found <a href="https://docs.cloud.google.com/bigquery/docs/graph-overview">here</a>.</p><h4>Data Transfer improvements</h4><p>The BigQuery Data Transfer Service has been enhanced to support incremental data transfers for a wider range of database connectors. This allows for just transferring new or updated records rather than pulling the entire dataset every time.</p><p>Incremental data transfers are now available for the following data source connectors:</p><ul><li>MySQL</li><li>Oracle</li><li>PostgreSQL</li><li>ServiceNow</li><li>Microsoft SQL Server</li></ul><p>To configure an incremental transfer (example for MySQL):</p><ul><li>Navigate to Data Transfers in your BigQuery workspace</li><li>Create a new transfer and select MySQL as the source</li><li>During configuration, set up your connection and dataset details</li><li>Choose the Ingestion type “Incremental”</li><li>Decide if you want to use “Append” or “Upsert” as write mode</li></ul><p>With the write mode “Append”, the updated row will be added to the table, and the old one remains. “Upsert” updates the original row, and the original values are gone.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/934/1*UoerKjylAAuu7NPO5Jfh3Q.png" /><figcaption><em>Choosing the ingestion type of a MySQL Transfer</em></figcaption></figure><p>More information can be found <a href="https://docs.cloud.google.com/bigquery/docs/mysql-transfer#full_or_incremental_transfers">here</a> (Example MySQL).</p><h4>New AI Function</h4><p>Google has introduced AI.KEY_DRIVERS, a new function that performs contribution analysis directly within your SQL queries. This feature allows users to automatically identify data segments that drive statistically significant changes to a summable metric.</p><p>Prepare your data so that it includes your dimension columns, one numeric column containing the summable metric, and one boolean column that indicates whether a row belongs to the interest set (True) or the reference set (False).</p><p>An example of a query could be:</p><pre>WITH InputData AS (<br>  SELECT<br>    product_gross_revenue_after_discount AS gross_revenue,<br>    product_name,<br>    seller_channel,<br>    billing_country,<br>    IF(order_date &gt; &#39;2023-07-01&#39;, TRUE, FALSE) AS date_after_h2<br>  FROM `dataset_name.order_item`<br>  WHERE EXTRACT(YEAR FROM order_date) = 2023)<br><br>SELECT * EXCEPT(product_name, seller_channel)<br>FROM AI.KEY_DRIVERS(<br>  TABLE InputData,<br>  metric_col =&gt; &#39;gross_revenue&#39;,<br>  dimension_cols =&gt; [&#39;product_name&#39;, &#39;seller_channel&#39;],<br>  interest_label_col =&gt; &#39;date_after_h2&#39;,<br>  min_apriori_support =&gt; 0<br>);</pre><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*in5-x_Qj2L4Ad1zwGbjRHA.png" /></figure><p>The function compares an “interest” dataset against a “reference” dataset to find unexpected differences and calculate the relative impact of specific segments (in our example H1 against H2 of 2023).</p><p>The function output provides a driver’s array (the dimensions defining the segment) alongside detailed metrics such as metric_interest, metric_reference, difference, and unexpected_difference</p><p>The current limitations are the maximum of 12 dimensions, and it only works with summable metrics.</p><p>More information can be found <a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-key-drivers">here</a>.</p><h4>Python UDFs</h4><p>Several enhancements to Python UDFs are available:</p><ul><li><strong>Vectorized UDFs</strong>: You can now create vectorized UDFs utilizing the Apache Arrow <em>RecordBatch</em> interface</li><li><strong>Cloud Monitoring Integration</strong>: UDFs automatically export operational metrics such as CPU utilization and memory usage directly to Cloud Monitoring</li><li><strong>Concurrency Control</strong>: With the new <em>container_request_concurrency</em> option in the CREATE FUNCTION statement, you can set the maximum number of concurrent requests per container instance</li><li><strong>New Quotas</strong>: Python UDFs have some limits, including a maximum of 10 GiB for image storage and a mutation rate of 30 operations per minute</li><li><strong>Cost Visibility</strong>: Execution costs can be tracked using the <em>external_service_costs</em> column in the <em>INFORMATION_SCHEMA.JOBS</em> view and within the <em>ExternalServiceCosts</em> field in the Job API.</li></ul><h4>MFA for Google Ads Transfer</h4><p>Starting 07.05.2026, the BigQuery Data Transfer Service for Google Ads will strictly require Multi-Factor Authentication.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*KmzmJzyp1gx1MupSw5yUtA.png" /><figcaption><em>Setting up Google Ads Transfer</em></figcaption></figure><p>Key details regarding this update:</p><ul><li><strong>Requirement for New Transfers:</strong> This policy applies only to new transfer configurations created after 07.05.2026</li><li><strong>Existing Transfers:</strong> Current and active transfer configurations are not affected by this change and will continue to run without immediate modification</li><li><strong>Exemption for Service Accounts:</strong> Transfers authorized via Service Accounts are exempt from this MFA requirement</li><li><strong>Security Compliance:</strong> Ensure that the user account used to set up a new transfer has 2-Step Verification enabled to prevent setup failures</li></ul><p>More information can be found <a href="https://ads-developers.googleblog.com/2026/04/multi-factor-authentication-requirement.html">here</a>.</p><h3>Dataform</h3><h4>Developer Connect for Git</h4><p>The connection process between Dataform and third-party Git repositories (such as GitHub or GitLab) has been significantly streamlined. With the Developer Connect integration, manual secrets management is no longer required, and Dataform can now support repositories located within privately hosted networks.</p><p>To implement this connection:</p><ul><li>Navigate to your Dataform project in the Google Cloud Console</li><li>Open the Settings section and click on “Connect with Git”</li><li>Select the option to connect a repository using Developer Connect</li><li>Click on Repository &gt; Link new repository &gt; Create new connection</li><li>Follow the authentication prompts to link your third-party Git provider</li><li>Configure the networking settings if your repository is hosted in a private network</li><li>Verify the connection to enable automated syncing and version control for your SQLX files</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*4cThGTYN3iJykyHambeVRQ.png" /><figcaption><em>Using Developer Connect as connection method</em></figcaption></figure><p>With this approach, you need to authorize Dataform once with your GitHub or GitLab account, and afterwards you just need to choose which repository you want to connect.</p><p>More information can be found <a href="https://docs.cloud.google.com/dataform/docs/connect-repository#dev-connect">here</a>.</p><h3>Data Studio</h3><h4>BigQuery data agents</h4><p>You can publish BigQuery data agents to Looker Studio now. This integration enables the use of Conversational Analytics within your dashboards, allowing stakeholders to interact with data using natural language.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*d7p_qngmzCkVxwccIR0ujA.png" /><figcaption><em>Publish a data agent in BigQuery</em></figcaption></figure><p>To enable this feature:</p><ul><li>Create a data agent within BigQuery.</li><li>Use the automated publishing option to send the agent to Looker Studio.</li><li>Access the agent within your Looker Studio report to begin using Conversational Analytics.</li></ul><p>Furthermore, Conversational Analytics is now available to all users (not just for the Pro version).</p><p>More information about the BigQuery data agents creation can be found <a href="https://docs.cloud.google.com/bigquery/docs/create-data-agents">here</a>, and about the new Conversational Analytics <a href="https://docs.cloud.google.com/data-studio/conversational-analytics-overview#legacy-new-experience">here</a>.</p><h3>Google Analytics</h3><h4>Task Assistant</h4><p>The Task Assistant is a new menu to provide tailored recommendations for optimizing Google Analytics property configurations and improving data collection.</p><p>The Task Assistant is in the left navigation menu, above the admin area.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*a7elYaySXUK49OMJKHQEuA.png" /><figcaption><em>Task menu</em></figcaption></figure><p>The tasks are grouped in the following sections:</p><ul><li>Get started: Basic setups like Data collection, Google signals, audiences, Key events</li><li>Connect your accounts: Google Ads and Search Console link</li><li>Enhance your reporting: Custom insights and audiences</li><li>Optimise your advertising: Google Ads actions</li><li>Add first-party data: user data, campaign data, measurement protocol</li><li>Fix data issues: If Google Analytics recognizes data issues, potential fixes are shown</li></ul><p>More information can be found <a href="https://support.google.com/analytics/answer/16888318">here</a>.</p><h3>Google Tag Manager</h3><p>No further release for Google Tag Manager.</p><h3>Further Links</h3><p>This post is part of the Google Data Analytics series from <a href="https://www.datadice.io/">datadice</a> and explains to you every month the newest features in BigQuery, Data Studio, Google Analytics, and Google Tag Manager.</p><p>Check out our <a href="https://www.linkedin.com/company/datadice">LinkedIn</a> account to get insights into our daily working life and get important updates about BigQuery, Data Studio, and marketing analytics.</p><p>We also started with our own YouTube channel. We talk about important DWH, BigQuery, Data Studio, and many more topics. Check out the channel <a href="https://www.youtube.com/channel/UCpyCm0Pb2fqu5XnaiflrWDg">here</a>.</p><p>If you want to learn more about how to use Google Data Studio and take it to the next level in combination with BigQuery, check our Udemy course <a href="https://www.udemy.com/course/bigquery-data-studio-grundlagen/">here</a>.</p><p>If you are looking for help to set up a modern and cost-efficient data warehouse or analytical dashboards, send us an email to hello@datadice.io, and we will schedule a call.</p><p><em>Originally published at </em><a href="https://datadice.io/en/blog/latest-updates-on-google-data-analytics-april-2026"><em>https://datadice.io</em></a><em>.</em></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=a69defe17dd7" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Latest Updates on Google Data Analytics (March 2026)]]></title>
            <link>https://datadice.medium.com/latest-updates-on-google-data-analytics-march-2026-bee34554cb4f?source=rss-2851976d5ad7------2</link>
            <guid isPermaLink="false">https://medium.com/p/bee34554cb4f</guid>
            <category><![CDATA[looker-studio]]></category>
            <category><![CDATA[ai]]></category>
            <category><![CDATA[mcp-server]]></category>
            <category><![CDATA[bigquery]]></category>
            <category><![CDATA[vector-search]]></category>
            <dc:creator><![CDATA[datadice]]></dc:creator>
            <pubDate>Tue, 07 Apr 2026 16:40:26 GMT</pubDate>
            <atom:updated>2026-04-07T16:40:26.160Z</atom:updated>
            <content:encoded><![CDATA[<h4>The highlights of the updates on BigQuery, Looker Studio, Google Analytics (GA) &amp; Google Tag Manager (GTM). By <a href="https://www.linkedin.com/in/alexander-junke-461375201/">Alexander Junke</a></h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/640/1*ilTaiihECRsin0-xFH3AWQ.gif" /></figure><p>In this blog post, I want to summarize the new releases from the Google tools that we use daily in <a href="https://www.datadice.io/">datadice</a>. Therefore, I want to give an overview of the new features of BigQuery, Dataform, Looker Studio, Google Analytics, and Google Tag Manager. Furthermore, I will focus on the releases that I consider to be the most important ones, and I will also name some other changes that were made.</p><p>If you want to take a closer look, here you can find the Release Notes from <a href="https://cloud.google.com/bigquery/docs/release-notes">BigQuery</a>, <a href="https://cloud.google.com/dataform/docs/release-notes">Dataform</a>, <a href="https://cloud.google.com/looker-studio/docs/release-notes">Looker Studio</a>, <a href="https://support.google.com/analytics/answer/9164320?hl=en">Google Analytics</a> &amp; <a href="https://support.google.com/tagmanager/answer/4620708?hl=en">Google Tag Manager</a>.</p><h3>BigQuery</h3><h4>Syntax changes for VECTOR_SEARCH</h4><p>Google introduced an alternate syntax for the VECTOR_SEARCH function, specifically optimized for single-vector searches. Previously, the function was primarily designed to handle batch searches by passing a query table. The new syntax allows you to pass a single query value directly using the query_value parameter, avoiding the need to construct a single-row table.</p><p>This enhancement provides the following benefits:</p><ul><li>Improved query performance compared to using the batch version for a single row.</li><li>Reduced query runtime and cost for common single-query patterns.</li><li>Less slot time usage and lower per-query charges for vector workloads at scale.</li></ul><p>The updated syntax for searching a single vector is structured as follows:</p><pre>VECTOR_SEARCH(<br>  TABLE base_table,<br>  &#39;column_to_search&#39;,<br>  query_value =&gt; single_query_value,<br>  top_k =&gt; 5<br>)</pre><p>More information can be found <a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/search_functions#vector_search">here</a>.</p><h4>Conversational Analytics changes</h4><p>Google expanded the conversational analytics capabilities within BigQuery. To start conversational analytics, you need to click here:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*AbMN5AggOyB7frJEKYfm_Q.png" /><figcaption><em>Start Conversational Analytics</em></figcaption></figure><p>The most important enhancements include:</p><ul><li><strong>Integration of unstructured data:</strong> Through new ObjectRef functions, the AI assistant can now directly access files stored in Google Cloud Storage. This allows you to include documents like PDFs and images in the analysis.</li><li><strong>Expanded BigQuery ML capabilities:</strong> The agent supports advanced AI functions, such as AI.GENERATE, AI.FORECAST, and AI.DETECT_ANOMALIES.</li><li><strong>Direct interaction with query results:</strong> Users can now initiate a conversation directly concerning the output of their SQL queries within the BigQuery Studio editor.</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/640/1*ilTaiihECRsin0-xFH3AWQ.gif" /><figcaption><em>Start Conversation from an output table</em></figcaption></figure><ul><li><strong>Cost-efficient queries via partitioning:</strong> The conversational agent automatically recognizes partitioned tables and uses relevant columns, such as date ranges, to generate optimized SQL code. This improves query speed and noticeably reduces execution costs.</li><li><strong>Interactive follow-up questions:</strong> The agent delivers context-aware next questions that can be executed with a single click in the Google Cloud Console.</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*5zUJjg4DR3dDyNXUXFu4pA.png" /><figcaption><em>Follow-up questions</em></figcaption></figure><p>More information can be found <a href="https://docs.cloud.google.com/bigquery/docs/conversational-analytics">here</a>.</p><h4>BigQuery Data Transfer Service remote MCP Servers</h4><p>Google has introduced the BigQuery Migration Service MCP (Model Context Protocol) server, designed to assist users with various SQL translation tasks directly. This tool simplifies migrating and adapting SQL code for BigQuery.</p><p>With the new MCP server, you can perform the following tasks:</p><ul><li>Translate existing SQL queries from other dialects directly into standard Google SQL syntax.</li><li>Generate Data Definition Language (DDL) statements based on your SQL input queries.</li><li>Obtain detailed explanations for the provided SQL translations to understand the syntax changes and underlying logic better.</li></ul><p>More information can be found <a href="https://docs.cloud.google.com/bigquery/docs/use-bigquery-migration-mcp">here</a>.</p><h4>AI Function changes</h4><p>Google introduced new parameters for some of the AI functions.</p><p>The updates include the following enhancements:</p><ul><li><a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-detect-anomalies">AI.DETECT_ANOMALIES</a>: You can now set a custom context window to determine exactly how many of the most recent data points the model should evaluate (Parameter = context_window).</li><li><a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-forecast">AI.FORECAST</a>: This function now allows you to explicitly specify the latest timestamp to use for forecasting (Parameter = forecast_end_timestamp).</li><li><a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-evaluate">AI.EVALUATE</a>: Provide a custom context window to define the number of recent data points used by the model (Parameter = context_window). Additionally, the function now outputs the mean absolute scaled error for the analyzed time series (output column = mean_absolute_error).</li></ul><h4>Further changes</h4><p>BigQuery got a few more updates I want to mention:</p><ul><li><strong>Global default location</strong>: Configure a global default location at either the organization or project level, which will be automatically applied when no specific location is provided or cannot be directly inferred from your request.</li></ul><pre>ALTER ORGANIZATION SET OPTIONS (<br>  `default_location` = EU<br>)<br><br>;<br><br>ALTER PROJECT SET OPTIONS (<br>  `default_location` = EU<br>)</pre><ul><li><strong>Visual mapping in query performance</strong>: A visual mapping of SQL queries within the query execution graph to help users better understand and debug query performance, including a new heatmap functionality that highlights the specific execution steps consuming the most slot-time.</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*2S7N8MkiPwUHIAFkY90MVA.png" /></figure><ul><li><strong>Automatically deploy open models</strong>: BigQuery ML now allows you to automatically deploy open models to Vertex AI endpoints, offering benefits such as automated Vertex AI resource management, the ability to use Compute Engine reservations, and automatic or immediate model undeployment to optimize costs.</li><li><strong>Migration assessment for Snowflake</strong>: There is a new member in the migration assessment family: Snowflake. If you want to migrate your Snowflake infrastructure to BigQuery, you get some support <a href="https://docs.cloud.google.com/bigquery/docs/migration-assessment#snowflake">here</a>.</li></ul><h3>Dataform</h3><p>No further release for Dataform.</p><h3>Looker Studio</h3><h4>CSV connector changes</h4><p>In October 2025, a few enhancements for the CSV connector were announced, but just for Pro users.</p><p>These changes are now available to all users. More information can be found <a href="https://docs.cloud.google.com/looker/docs/studio/upload-csv-files">here</a>.</p><h3>Google Analytics</h3><p>No further release for Google Analytics.</p><h3>Google Tag Manager</h3><p>No further release for Google Tag Manager.</p><h3>Further Links</h3><p>This post is part of the Google Data Analytics series from <a href="https://www.datadice.io/">datadice</a> and explains to you every month the newest features in BigQuery, Data Studio, Google Analytics, and Google Tag Manager.</p><p>Check out our <a href="https://www.linkedin.com/company/datadice">LinkedIn</a> account to get insights into our daily working life and get important updates about BigQuery, Looker Studio, and marketing analytics.</p><p>We also started with our own YouTube channel. We talk about important DWH, BigQuery, Looker Studio, and many more topics. Check out the channel <a href="https://www.youtube.com/channel/UCpyCm0Pb2fqu5XnaiflrWDg">here</a>.</p><p>If you want to learn more about how to use Google Data Studio and take it to the next level in combination with BigQuery, check our Udemy course <a href="https://www.udemy.com/course/bigquery-data-studio-grundlagen/">here</a>.</p><p>If you are looking for help to set up a modern and cost-efficient data warehouse or analytical dashboards, send us an email to hello@datadice.io, and we will schedule a call.</p><p><em>Originally published at </em><a href="https://datadice.io/en/blog/latest-updates-on-google-data-analytics-march-2026"><em>https://datadice.io</em></a><em>.</em></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=bee34554cb4f" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Latest Updates on Google Data Analytics (February 2026)]]></title>
            <link>https://datadice.medium.com/latest-updates-on-google-data-analytics-february-2026-86391f4eddb2?source=rss-2851976d5ad7------2</link>
            <guid isPermaLink="false">https://medium.com/p/86391f4eddb2</guid>
            <category><![CDATA[looker-studio]]></category>
            <category><![CDATA[conversational-ai]]></category>
            <category><![CDATA[bigquery]]></category>
            <category><![CDATA[google-analytics]]></category>
            <category><![CDATA[google-tag-manager]]></category>
            <dc:creator><![CDATA[datadice]]></dc:creator>
            <pubDate>Mon, 09 Mar 2026 09:11:14 GMT</pubDate>
            <atom:updated>2026-03-09T09:11:14.791Z</atom:updated>
            <content:encoded><![CDATA[<h4>The highlights of the updates on BigQuery, Looker Studio, Google Analytics (GA) &amp; Google Tag Manager (GTM). By <a href="https://www.linkedin.com/in/alexander-junke-461375201/">Alexander Junke</a></h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/480/1*riIo9YrjE1onyVnZ59C03A.gif" /></figure><p>In this blog post, I want to summarize the new releases from the Google tools that we use daily in <a href="https://www.datadice.io/">datadice</a>. Therefore, I want to give an overview of the new features of BigQuery, Dataform, Looker Studio, Google Analytics, and Google Tag Manager. Furthermore, I will focus on the releases that I consider to be the most important ones, and I will also name some other changes that were made.</p><p>If you want to take a closer look, here you can find the Release Notes from <a href="https://cloud.google.com/bigquery/docs/release-notes">BigQuery</a>, <a href="https://cloud.google.com/dataform/docs/release-notes">Dataform</a>, <a href="https://cloud.google.com/looker-studio/docs/release-notes">Looker Studio</a>, <a href="https://support.google.com/analytics/answer/9164320?hl=en">Google Analytics</a> &amp; <a href="https://support.google.com/tagmanager/answer/4620708?hl=en">Google Tag Manager</a>.</p><h3>BigQuery</h3><h4>Parameterized queries</h4><p>Users can now configure and execute parameterized queries directly within the BigQuery query editor in the Google Cloud console. This update simplifies the process of writing and testing dynamic SQL.</p><p>To pass parameters in the query editor:</p><ul><li>Open the BigQuery query editor in your Google Cloud console</li><li>Click on the “More” option in the query editor toolbar and select “Query settings”</li><li>Locate the “Query parameters” section and click “Add parameter” to define the name, data type, and value</li><li>You can use the configured parameter in the SQL code by prefixing the parameter name with an @ symbol (e.g., @parameter_name)</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*5b9PTctBBg0fvJxWS_W2OA.png" /></figure><p>And this is the corresponding query:</p><pre>SELECT<br>  name,<br>  SUM(number) AS amount<br>FROM `bigquery-public-data.usa_names.usa_1910_2013`<br>WHERE<br>  gender = @gender<br>  AND year = @year<br>GROUP BY 1<br>ORDER BY 2 DESC</pre><p>In these query parameters, you can just add simple datatypes like String, Integer, Float, Date, …</p><p>Parameters with the types array, struct, and ranges can be just created and used in the BigQuery CLI.</p><p>Example:</p><pre>bq query \<br>--use_legacy_sql=false\<br>--parameter=&#39;gender::F&#39;\<br>--parameter=&#39;states:ARRAY&lt;STRING&gt;:[&quot;WA&quot;, &quot;WI&quot;, &quot;WV&quot;, &quot;WY&quot;]&#39;\<br>&#39;SELECT<br>    name,<br>    SUM(number) AS count<br>  FROM `bigquery-public-data.usa_names.usa_1910_2013`<br>  WHERE<br>    gender = @gender<br>    AND state IN UNNEST(@states)<br>  GROUP BY name<br>  ORDER BY 2 DESC<br>  LIMIT 10;&#39;</pre><p>More information can be found <a href="https://docs.cloud.google.com/bigquery/docs/parameterized-queries">here</a>.</p><h4>Global queries</h4><p>Google has introduced “Global queries,” a new feature that lets you query data distributed across multiple geographic locations with a single SQL statement.</p><p>BigQuery automatically handles the cross-region orchestration, running optimized sub-queries in remote regions and securely transferring only the necessary filtered data to the primary execution region to deliver a unified result.</p><p>The project where the global query is located and needs data from other projects requires the active enable_global_queries_execution option.</p><pre>ALTER PROJECT `project_id`<br>SET OPTIONS (<br>  `region-europe-west3.enable_global_queries_execution` = TRUE<br>);</pre><p>The project from which you get data requires the active enable_global_queries_execution option.</p><pre>ALTER PROJECT `project_id`<br>SET OPTIONS (<br>  `region-europe-west3.enable_global_queries_data_access` = TRUE<br>);</pre><p>Note: These global queries can lead to higher costs than expected before. The final costs are the sum of the costs from</p><ul><li>every subquery in the remote locations</li><li>the final query</li><li>Copying data between the regions</li><li>Storing the copied data in the primary region for 8 hours</li></ul><p>More information can be found <a href="https://docs.cloud.google.com/bigquery/docs/global-queries">here</a>.</p><h4>Further changes</h4><ul><li><strong>Enhanced AI functions:</strong> The AI.GENERATE and AI.GENERATE_TABLE functions now allow you to provide descriptions for fields in your custom output schema, while the AI.CLASSIFY function has been upgraded to support multi-category classification for your inputs.</li><li><strong>Undelete datasets:</strong> You can now easily recover a deleted dataset to its exact state at the time of deletion, provided the action is performed within your configured time travel window. More information can be found <a href="https://docs.cloud.google.com/bigquery/docs/restore-deleted-datasets">here</a>.</li><li><strong>Custom glossary for conversational agents:</strong> To help conversational analytics agents better interpret your specific prompts, you can now create and review custom glossary terms directly in BigQuery, as well as import business glossary terms from the Dataplex Universal Catalog.</li></ul><h3>Dataform</h3><p>No further release for Google Tag Manager.</p><h3>Looker Studio</h3><h4>Conversational Analytics reasoning</h4><p>Looker Studio has enhanced its Conversational Analytics tool by providing transparency into how the AI interprets user queries. Users can now access a “Show reasoning” feature that provides a plain-text explanation of the logic used to generate a specific data visualization or response. This includes details on how key terms were mapped to specific dimensions and metrics, which filters were applied, and the duration of the processing time.</p><p>To view the analytical reasoning:</p><ul><li>Enter your prompt in the Conversational Analytics interface</li><li>Once the response is generated, click the “Show reasoning” button located above the output</li><li>Click “Hide reasoning” to collapse the detailed explanation again</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*uinA93tWBiS8mEymXIq1sw.png" /></figure><p>More information can be found <a href="https://docs.cloud.google.com/looker/docs/studio/conversational-analytics-looker-studio-data#show-reasoning">here</a>.</p><h4>Further changes</h4><ul><li><strong>Looker Studio Pro for Google Workspace:</strong> Subscriptions for Looker Studio Pro can now be directly purchased and centrally managed through your Google Workspace Admin console. More information can be found <a href="https://support.google.com/a/answer/16695590">here</a>.</li><li><strong>Change Pro billing accounts:</strong> Administrators can now seamlessly switch the Google Cloud billing account associated with their Looker Studio Pro subscription without any access downside. More information can be found <a href="https://docs.cloud.google.com/looker/docs/studio/change-billing-account">here</a>.</li><li><strong>Export charts as images:</strong> Individual charts can now be easily saved as a PNG file or copied directly to your clipboard for quick external sharing. More information can be found <a href="https://docs.cloud.google.com/looker/docs/studio/export-data-from-a-chart">here</a>.</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*yiCyxAC5RbLoVZmT1g7i9g.png" /></figure><ul><li><strong>Direct links to report components:</strong> You can now generate and share specific URLs that route users directly to an individual component, such as a chart or control element, within a report. More information can be found <a href="https://docs.cloud.google.com/looker/docs/studio/link-to-a-page#link_to_a_component">here</a>.</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/480/1*riIo9YrjE1onyVnZ59C03A.gif" /></figure><ul><li><strong>Expanded search parameters:</strong> Finding reports and data sources on the homepage is now easier, as results can be specifically filtered by Type, Owner, Location, and Date Modified. More information can be found <a href="https://docs.cloud.google.com/looker/docs/studio/link-to-a-page#link_to_a_component">here</a>.</li></ul><h3>Google Analytics</h3><h4>New Insights on Home page</h4><p>Google has introduced a new “Generated insights” feature directly on the Google Analytics Home page. This AI-supported tool summarizes the top three data changes observed since your last visit. The insights highlight key configuration updates, anomalies, and seasonality trends to help users identify significant performance shifts immediately.</p><p>To use this feature:</p><ul><li>Navigate to the Home page of your Google Analytics 4 property.</li><li>In the upper section of the page, the Generated Insights are shown</li></ul><p>So far, I do not see these insights, maybe it still takes a while until they show up in all properties.</p><p>The generated insights on the detailed reports are still shown as well.</p><h3>Google Tag Manager</h3><h4>Improved event collection for Google Ads</h4><p>There is an automated enhancement for website event data collection. This update allows Google Ads to capture a wider range of event data directly from websites with minimal manual configuration.</p><p>This update should lead to more event which are tracked automatically and/or more data sent with the existing events.</p><h3>Further Links</h3><p>This post is part of the Google Data Analytics series from <a href="https://www.datadice.io/">datadice</a> and explains to you every month the newest features in BigQuery, Data Studio, Google Analytics, and Google Tag Manager.</p><p>Check out our <a href="https://www.linkedin.com/company/datadice">LinkedIn</a> account to get insights into our daily working life and get important updates about BigQuery, Looker Studio, and marketing analytics.</p><p>We also started with our own YouTube channel. We talk about important DWH, BigQuery, Looker Studio, and many more topics. Check out the channel <a href="https://www.youtube.com/channel/UCpyCm0Pb2fqu5XnaiflrWDg">here</a>.</p><p>If you want to learn more about how to use Google Data Studio and take it to the next level in combination with BigQuery, check our Udemy course <a href="https://www.udemy.com/course/bigquery-data-studio-grundlagen/">here</a>.</p><p>If you are looking for help to set up a modern and cost-efficient data warehouse or analytical dashboards, send us an email to hello@datadice.io, and we will schedule a call.</p><p><em>Originally published at </em><a href="https://datadice.io/en/blog/latest-updates-on-google-data-analytics-february-2026"><em>https://datadice.io</em></a><em>.</em></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=86391f4eddb2" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Latest Updates on Google Data Analytics (January 2026)]]></title>
            <link>https://datadice.medium.com/latest-updates-on-google-data-analytics-january-2026-f1ac96386982?source=rss-2851976d5ad7------2</link>
            <guid isPermaLink="false">https://medium.com/p/f1ac96386982</guid>
            <category><![CDATA[conversion-optimization]]></category>
            <category><![CDATA[google-analytics]]></category>
            <category><![CDATA[histograms]]></category>
            <category><![CDATA[cross-channel]]></category>
            <category><![CDATA[gemini]]></category>
            <dc:creator><![CDATA[datadice]]></dc:creator>
            <pubDate>Mon, 23 Feb 2026 20:26:50 GMT</pubDate>
            <atom:updated>2026-02-23T20:26:50.590Z</atom:updated>
            <content:encoded><![CDATA[<h4>The highlights of the updates on BigQuery, Looker Studio, Google Analytics (GA) &amp; Google Tag Manager (GTM). By <a href="https://www.linkedin.com/in/alexander-junke-461375201/">Alexander Junke</a></h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*NO-ZFmCtIC0kWje3WEiK6A.gif" /></figure><p>In this blog post, I want to summarize the new releases from the Google tools that we use daily in <a href="https://www.datadice.io/">datadice</a>. Therefore, I want to give an overview of the new features of BigQuery, Dataform, Looker Studio, Google Analytics, and Google Tag Manager. Furthermore, I will focus on the releases that I consider to be the most important ones, and I will also name some other changes that were made.</p><p>If you want to take a closer look, here you can find the Release Notes from <a href="https://cloud.google.com/bigquery/docs/release-notes">BigQuery</a>, <a href="https://cloud.google.com/dataform/docs/release-notes">Dataform</a>, <a href="https://cloud.google.com/looker-studio/docs/release-notes">Looker Studio</a>, <a href="https://support.google.com/analytics/answer/9164320?hl=en">Google Analytics</a> &amp; <a href="https://support.google.com/tagmanager/answer/4620708?hl=en">Google Tag Manager</a>.</p><h3>BigQuery</h3><h4>New Transfers</h4><p>The BigQuery Data Transfer Service has added two new connectors, allowing you to ingest e-commerce and marketing data without custom pipelines.</p><p>Shopify Data Transfer directly imports your store data into BigQuery.</p><ul><li>Data: Selectable objects like <em>orders</em>, <em>products</em>, <em>customers</em>, and <em>inventory</em></li><li>Requirements: Shop URL subdomain, Client ID, and Client Secret (via a Shopify app)</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/366/1*YlXC2TjYcTIJiXvuaV7FSA.png" /><figcaption><em>Shopify Import Settings</em></figcaption></figure><p>More information can be found <a href="https://docs.cloud.google.com/bigquery/docs/shopify-transfer">here</a>.</p><p>Mailchimp Data Transfer natively ingests email marketing data for analysis.</p><ul><li>Data: Objects including <em>campaigns</em>, <em>lists</em> (<em>audiences</em>), <em>subscribers</em>, and <em>reports</em>.</li><li>Requirements: Mailchimp API Key.</li><li>Configuration: You can optionally set a start_date to filter historical data</li></ul><p>More information can be found<a href="https://docs.cloud.google.com/bigquery/docs/mailchimp-transfer"> here</a>.</p><h4>Gemini Cloud Assist</h4><p>There are two useful updates for Gemini Cloud Assist in BigQuery, helping you both analyze past performance and find the right data assets within your projects.</p><ul><li>Job Analysis: You can ask questions to troubleshoot specific jobs, such as <em>Why was my last query slow?</em> Or <em>why did this job fail?</em>. You can also identify which queries were the most resource-intensive over a specific period.</li><li>Resource Discovery: It is now possible to search for resources across your projects using natural language. For example, you can ask for a specific table’s schema or find tables by content, such as <em>Which tables contain demographic information about new users?</em></li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/376/1*rLn7apnzN-7hbQ8LsRp41A.png" /><figcaption><em>Cloud Assist Chat</em></figcaption></figure><p>More information can be found<a href="https://docs.cloud.google.com/bigquery/docs/use-cloud-assist"> here</a>.</p><h4>JDBC driver</h4><p>A new, open-source Java Database Connectivity (JDBC) driver for BigQuery is now available. This Google-developed driver allows you to connect your Java applications and tools directly to BigQuery using standard database protocols.</p><p>This is particularly useful for integrating BigQuery into existing Java-based ecosystems, legacy applications, or third-party tools that rely on the generic JDBC standard rather than native Google Cloud client libraries.</p><p>To set it up, you need to</p><ul><li>Include the driver JAR in your project</li><li>The connection is established using a URL pattern starting with <em>jdbc:bigquery://</em></li><li>Handle authentication, typically by providing a Service Account key or using Application Default Credentials</li></ul><p>While it fully supports standard SQL execution, keep in mind that JDBC is generally synchronous. For high-throughput streaming ingestion or complex asynchronous jobs, the native BigQuery API might still be the better choice.</p><p>A detailed guide to setting it up can be found<a href="https://docs.cloud.google.com/bigquery/docs/jdbc-for-bigquery"> here</a>.</p><h4>AI function changes</h4><p>You now have more control when using the <em>AI.IF</em>, <em>AI.SCORE</em>, and <em>AI.CLASSIFY</em> functions in BigQuery.</p><p>An optional <em>endpoint</em> parameter has been added, allowing you to specify a particular model for the function to utilize.</p><ul><li>Any generally available or preview Gemini model can be used</li><li>If this argument is omitted, the function will choose the most fitting model (cost-to-quality tradeoff)</li><li>The endpoint parameter works for all 3 functions the same</li></ul><p>More information can be found<a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-score"> here</a> (e.g., for AI.Score).</p><h3>Dataform</h3><h4>Structure Project with Dataform API</h4><p>Google has introduced the ability to organize code assets into a hierarchical structure using the Dataform API. This update allows users to manage their development environment more effectively by grouping related resources into folders and repositories.</p><p>To utilize this feature via the Dataform API, follow these steps:</p><ol><li>Access the Dataform API through e.g. the Google Cloud SDK</li><li>Use the <em>folders</em> resource to create a logical directory structure within your repository</li><li>Move existing code assets or create new ones within these specific folder paths to maintain a clean workspace</li><li>Manage permissions and access levels at different levels of the hierarchy as needed for your team</li></ol><p>Here is an example of how to create a folder nested within another folder:</p><blockquote>curl -H “Authorization: Bearer $(gcloud auth print-access-token)” \<br>-H “Content-Type: application/json” \<br>-X POST \<br>-d ‘{<br>“displayName”: “<em>folder_name</em>”,<br>“containingFolder”: “projects/<em>project_id</em>/locations/<em>europe-west3</em>/folders/<em>parent_folder</em>”<br>}’ \<br><a href="https://dataform.googleapis.com/v1beta1/projects/project_id">“https://dataform.googleapis.com/v1beta1/projects/<em>project_id</em></a>/locations/<em>europe-west3</em>/folders&quot;</blockquote><p>More information about the whole permission controlling and more code examples can be found <a href="https://docs.cloud.google.com/dataform/docs/organize-code-assets">here</a>.</p><h3>Looker Studio</h3><h4>Filtering across data sources</h4><p>We already wrote a Blog Post about this trick in 2021! <a href="https://medium.com/data-school/creating-filters-for-multiple-data-sources-in-google-data-studio-ef41e061c11b">Here</a> you can find it.</p><p>It is possible to filter fields from different data sources with the same control. The solution we explained in the blog post is more like a “hack” because it was not natively supported. And now a separate menu can be used for this.</p><p>In the menu Resource &gt; “Manage field names and IDs” you can enable these field overrides.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/676/1*qHazYzsVxVygurfOrhKbqQ.png" /><figcaption><em>Add a field overwrite for product_name</em></figcaption></figure><p>Note: Changing the field ID for a field that is already in use will break the charts. You need to select the new field in the broken charts, then.</p><p>And ensure that all fields with the same field id have the same data type.</p><h4>Hide charts and components for viewers</h4><p>A new meaningful feature allows you to control the visibility of individual charts, shapes, and other components within your reports. You can now choose to hide specific elements so they remain visible to editors in <em>Edit mode</em> but disappear for users in <em>View mode</em>.</p><p>This feature just really works when at least one editor of the dashboard has a Looker Studio Pro account.</p><p>How it works:</p><ul><li>Click on the three-dot menu of a chart</li><li>Select the option “Control Visibility”</li><li>Select an existing group membership variable (Pro user can create a new variable)</li><li>Click on Confirm</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*NO-ZFmCtIC0kWje3WEiK6A.gif" /><figcaption><em>Chart control visibility</em></figcaption></figure><p>If your account is part of the group membership variable, you still see the chart in the view mode. If not, you do not see the chart anymore when you are in the view mode.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/708/1*Ixzd0m2krkWBclU_PwXpsA.png" /><figcaption><em>Set up group membership variable</em></figcaption></figure><p>There are two main use cases for this that I have currently in mind:</p><ul><li>Workflow Improvements: This is excellent for keeping “work in progress” charts in the report without exposing them to stakeholders.</li><li>Internal Documentation: You can use this to add text boxes with instructions, change logs, or data quality notes that are only meant for the dashboard developers and not the end-users.</li></ul><p>More information can be found<a href="https://docs.cloud.google.com/looker/docs/studio/hide-report-components"> here</a>.</p><h4>New Histogram charts</h4><p>You can now visualize the distribution of your data natively using the new Histogram chart type. Unlike standard bar charts that compare specific categories, histograms group continuous data into intervals.</p><ul><li>Statistical Insights: This is essential for understanding the shape, center, and spread of your datasets, helping you spot outliers or skewness immediately.</li><li>Use Case: A classic example is analyzing <em>Session Duration</em> or <em>Order Value</em>. Instead of just seeing an average, you can see exactly how many users fall into specific time or value ranges (e.g., 0–10s, 11–20s, etc.).</li></ul><p>The configuration part is a bit confusing.</p><p>When you select the histogram, the “auto bin” option is active, and the categories are chosen from Looker Studio based on the distribution of the metric.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/738/1*DF-YRfuefx2QCRrYnZRSZA.png" /><figcaption><em>Histogram for nr items in the order (Auto Bin)</em></figcaption></figure><p>And then you can set up the number of bars yourself in the Bin section.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/660/1*GJAjblTvN7hr797pGUqg1w.png" /><figcaption><em>Histogram for nr items in the order (Manual Bin)</em></figcaption></figure><p>But the distribution of the bins does not work really well for a lot of fields. Then you need to set up the bins yourself by changing the calculation of the dimension.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/904/1*bqKBRAmrpDdwETnI68rSZw.png" /><figcaption><em>Setting up bins</em></figcaption></figure><p>More information can be found<a href="https://docs.cloud.google.com/looker/docs/studio/histogram-reference"> here</a>.</p><h3>Google Analytics</h3><h4>Cross-channel budgeting</h4><p>Google Analytics 4 is taking a big step towards becoming a comprehensive planning platform with the introduction of Cross-Channel Budgeting. This feature moves beyond retrospective reporting, allowing you to forecast performance and optimize media spend directly within the interface.</p><p>You can access this new toolset by navigating to <em>Advertising &gt; Planning &gt; Budgeting.</em></p><p>The feature offers two main planning types</p><ul><li>Projection plans: help you monitor if your current campaigns are on track to meet your KPIs.</li><li>Scenario plans: allow for “what-if” analysis, letting you simulate how different budget allocations would impact your future revenue or conversions.</li></ul><p>There are some requirements before you can use the Cross-channel budgeting:</p><ul><li>You need at least one year of historical data for both conversions and campaigns.</li><li>Data Requirements: Crucially, the model requires data from at least two channels, specifically covering both Google and non-Google sources. This means you will likely need to use Data Import to bring in cost and campaign data for your non-Google channels.</li><li>Compatibility: The feature relies on your Primary Channel Grouping, and all channels must have associated cost data to be included in the plans.</li></ul><p>Especially due to the requirement of “One year of cost data for non-Google integrations” I can not really try out this feature now.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/732/1*_rkVJEKYw0iM3ow_AhS_rg.png" /><figcaption><em>Requirements check for Cross-channel budgeting</em></figcaption></figure><p>To get more information on how it works and what can be done, you can take a look<a href="https://support.google.com/analytics/answer/14896117"> here</a>.</p><h4>New report for conversion attribution</h4><p>Google has introduced the Conversion attribution analysis report within the advertising workspace. This new tool is designed to uncover the full value of marketing channels throughout the entire customer journey.</p><p>The report offers two specialized views to provide deeper insights:</p><ul><li>Last Click: This view identifies channels that engaged customers early in their journey but were not the final click. It is particularly useful for justifying spend on upper-funnel channels like YouTube.</li><li>Data-driven attribution: This view categorizes touchpoints into Early, Mid, and Late stages. It specifically separates single-touchpoint paths from multi-touchpoint journeys to distinguish between standalone drivers and campaigns that help close complex journeys.</li></ul><p>To access the new report, follow these steps:</p><ol><li>Navigate to the “Advertising” workspace in your Google Analytics 4 property.</li><li>Select “Attribution” and then click on “Conversion attribution analysis”.</li><li>Filter by specific conversion events or date ranges to analyze the performance of your upper and mid-funnel campaigns.</li><li>Review the “Early”, “Mid”, and “Late” stage data to adjust your budget allocation towards high-impact touchpoints.</li></ol><figure><img alt="" src="https://cdn-images-1.medium.com/max/680/1*cG26gY5gUVfc3q-R7L0xfw.png" /><figcaption><em>Conversion attribution analysis</em></figcaption></figure><p>Some further options can be set up:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/662/1*R3rhWahKGrPK3kmEAFTWWg.png" /><figcaption>Attribution model and Attribution timing setting</figcaption></figure><p>More information can be found <a href="https://support.google.com/analytics/answer/16590327">here</a>.</p><h3>Google Tag Manager</h3><h4>Google tag gateway changes</h4><p>There are 2 new small changes regarding setting up the Google Tag Gateway in GTM. You can configure the Google Tag Gateway in the Admin section of the Server container:</p><ul><li>Akamai can be selected as a CDN, next to Cloudflare</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/912/1*dEZhPi40707CjltVfcFGZg.png" /><figcaption>Choosing CDN for the Google tag gateway</figcaption></figure><ul><li>Using GCP’s Global external Application Load Balancer to set up the Google Tag settings</li></ul><h3>Further Links</h3><p>This post is part of the Google Data Analytics series from <a href="https://www.datadice.io/">datadice</a> and explains to you every month the newest features in BigQuery, Data Studio, Google Analytics, and Google Tag Manager.</p><p>Check out our <a href="https://www.linkedin.com/company/datadice">LinkedIn</a> account to get insights into our daily working life and get important updates about BigQuery, Looker Studio, and marketing analytics.</p><p>We also started with our own YouTube channel. We talk about important DWH, BigQuery, Looker Studio, and many more topics. Check out the channel <a href="https://www.youtube.com/channel/UCpyCm0Pb2fqu5XnaiflrWDg">here</a>.</p><p>If you want to learn more about how to use Google Data Studio and take it to the next level in combination with BigQuery, check our Udemy course <a href="https://www.udemy.com/course/bigquery-data-studio-grundlagen/">here</a>.</p><p>If you are looking for help to set up a modern and cost-efficient data warehouse or analytical dashboards, send us an email to hello@datadice.io, and we will schedule a call.</p><p><em>Originally published at </em><a href="https://datadice.io/en/blog/latest-updates-on-google-data-analytics-january-2026"><em>https://datadice.io</em></a><em>.</em></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=f1ac96386982" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Latest Updates on Google Data Analytics (December 2025)]]></title>
            <link>https://datadice.medium.com/latest-updates-on-google-data-analytics-december-2025-e28ae4d38be4?source=rss-2851976d5ad7------2</link>
            <guid isPermaLink="false">https://medium.com/p/e28ae4d38be4</guid>
            <category><![CDATA[embedding]]></category>
            <category><![CDATA[google-analytics]]></category>
            <category><![CDATA[looker-studio]]></category>
            <category><![CDATA[google-tag-manager]]></category>
            <category><![CDATA[bigquery]]></category>
            <dc:creator><![CDATA[datadice]]></dc:creator>
            <pubDate>Wed, 07 Jan 2026 15:08:34 GMT</pubDate>
            <atom:updated>2026-01-07T15:08:34.722Z</atom:updated>
            <content:encoded><![CDATA[<h4>The highlights of the updates on BigQuery, Looker Studio, Google Analytics (GA) &amp; Google Tag Manager (GTM). By <a href="https://www.linkedin.com/in/alexander-junke-461375201/">Alexander Junke</a></h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*O1vblvYwZbNU30cTLI7nlg.gif" /></figure><p>In this blog post, I want to summarize the new releases from the Google tools that we use daily in <a href="https://www.datadice.io/">datadice</a>. Therefore, I want to give an overview of the new features of BigQuery, Dataform, Looker Studio, Google Analytics, and Google Tag Manager. Furthermore, I will focus on the releases that I consider to be the most important ones, and I will also name some other changes that were made.</p><p>If you want to take a closer look, here you can find the Release Notes from <a href="https://cloud.google.com/bigquery/docs/release-notes">BigQuery</a>, <a href="https://cloud.google.com/dataform/docs/release-notes">Dataform</a>, <a href="https://cloud.google.com/looker-studio/docs/release-notes">Looker Studio</a>, <a href="https://support.google.com/analytics/answer/9164320?hl=en">Google Analytics</a> &amp; <a href="https://support.google.com/tagmanager/answer/4620708?hl=en">Google Tag Manager</a>.</p><h3>BigQuery</h3><h4>Autonomous embeddings in Tables</h4><p>These embeddings are located in an additional column. This column is based on another source column. If the source column changes, based on a model from Vertex AI, the embedded column changes accordingly.</p><p>You can create such a table with an embedding by doing the following:</p><pre>CREATE TABLE embeddings_test.movies (<br>  title STRING,<br>  description STRING,<br>  genre STRING,<br>  description_embedding STRUCT&lt;result ARRAY&lt;FLOAT64&gt;, status STRING&gt;<br>    GENERATED ALWAYS AS (AI.EMBED(<br>      description,<br>      connection_id =&gt; &#39;eu.vertex_ai_eu_connection&#39;,<br>      endpoint =&gt; &#39;desc-embedding-005&#39;<br>    ))<br>    STORED OPTIONS( asynchronous = TRUE )<br>);</pre><p>Then fill the table with some data. Just the 3 columns title, description and genre need to be filled, the description_embedding gets created based on these.</p><p>Additionally, a vector index can be used to speed up the system, but we will skip this part.</p><p>Then you can ask the AI questions about your data, and you get a distance for every table entry. The smaller the distance, the better the match.</p><pre>SELECT base.title, base.description, distance<br>FROM AI.SEARCH(TABLE embeddings_test.movies, &#39;description&#39;, &quot;The movie contains horror parts&quot;)<br>ORDER BY 3</pre><figure><img alt="" src="https://cdn-images-1.medium.com/max/792/1*_RuYyB3i1A_90koHcKc1RQ.png" /></figure><p>Further information can be found <a href="https://docs.cloud.google.com/bigquery/docs/autonomous-embedding-generation">here</a>.</p><h4>New Transfers</h4><p>Several new Data Transfers are now available to ingest data into your BigQuery project, including:</p><ul><li>PostgreSQL</li><li>Microsoft SQL Server</li><li>MySQL</li><li>Oracle</li><li>Klaviyo</li><li>HubSpot</li></ul><p>The configuration for the relational databases (PostgreSQL, Microsoft SQL Server, MySQL, and Oracle) works similarly. You will need to provide the host, port number, database name, username, and password. There are also multiple TLS options available for securing the connection.</p><p>Once the connection is established, you can browse the database to select the required tables or add them manually.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*Ay2Vmgkqx6aLiM6AC_Bo2w.png" /><figcaption><em>Set up MySQL Transfer</em></figcaption></figure><p>Once the connection is established, you can browse the database to select the required tables or add them manually.</p><p>For the SaaS Connections:</p><ul><li>HubSpot: Requires an Access Token</li><li>Klaviyo: Requires a Private API Key</li></ul><p>For both services, you can select specific objects to transfer.</p><p>Additionally, it is now possible to ingest data from blob storage (Amazon S3, Azure Blob Storage, Google Cloud Storage) into Iceberg tables in BigQuery.</p><h3>Dataform</h3><h4>Private Workspaces</h4><p>There is a new kind of Dataform workspaces available: Private Workspaces. If this option is active, only the creator of the Workspace sees the Workspace. Just this account has access to the code changes, compilation errors, and logs for the compilations and invocations from the workspace.</p><p>So far, there is no button to activate this option, probably because the feature is in preview.</p><p>Instructions on how to set it up already, can be found <a href="https://docs.cloud.google.com/dataform/docs/access-control#enable-private-workspaces">here</a>.</p><h4>actAs Permission</h4><p>Strict act-as mode enforcement is approaching. Please be prepared: The Service Account executing the scripts requires the iam.serviceAccounts.actAs permission. Google will enforce this requirement in the coming weeks.</p><p>You can monitor Cloud Logging, which now provides improved details if errors occur due to the Strict act-as mode.</p><p>Instructions on how to verify your Service Account setup can be found <a href="https://docs.cloud.google.com/dataform/docs/strict-act-as-mode#verify-permissions">here</a>.</p><h3>Looker Studio</h3><h4>Changes for Scheduled Reports</h4><p>For a long time, you have been able to send your dashboard pages to certain accounts, for example via email.</p><p>So far, the shortest period of sending the dashboard data was daily. Now it is even possible to send the dashboard hourly. This feature is just available for Pro users.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/816/1*YYNA03dyaQWQmVoWVYKfig.png" /><figcaption><em>Set up an hourly delivery</em></figcaption></figure><p>If you update your data on an hourly basis, this new feature will be very useful — for example, if you want to track performance during an active sale.</p><p>A second update can be found in the schedule under “Advanced options.” The new option, “Expand tables to show all rows (PDF),” ensures that all table rows are displayed, up to a limit of 2,000 rows.</p><p>Please use this option with caution: depending on your active filters, it may result in a PDF with a very large number of pages.</p><h3>Google Analytics</h3><h4>Analytics Advisor</h4><p>This new Analytics Advisor is at the end … Gemini for your Google Analytics property.</p><p>So you can ask any question there regarding your Google Analytics data, and you get the corresponding answer. It can create tables and charts as well, and can link to further reports if it fits.</p><p>This kind of question-answer game was already available in some parts before in Google Analytics, but now it is always available and unified in the Analytics Advisor.</p><p>You can access this advisor on any page in the top right corner.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*O1vblvYwZbNU30cTLI7nlg.gif" /><figcaption><em>Analytics Advisor communication</em></figcaption></figure><h4>New audience templates</h4><p>There are two new audience templates available:</p><ul><li>High-Value Purchasers: Includes the top X percentile of LTV users</li><li>Disengaged Purchasers: Contains users who have not purchased in the last X days</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/842/1*DopxRmH9BBqQDv9QuY5mfw.png" /><figcaption><em>New audience templates</em></figcaption></figure><p>The new audiences can be used in Google Analytics and be exported to Google Ads as well, to use especially in customer lifecycle goals.</p><h3>Google Tag Manager</h3><h4>New built-in variables</h4><p>There are 3 new built-in variables available in GTM:</p><ul><li>Analytics Client ID</li><li>Analytics Session ID</li><li>Analytics Session Number</li></ul><p>They contain the current format of these 3 values, which Google Analytics uses to identify the current user and session. If multiple Measurement IDs are active on the website, all different values per ID are saved.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/862/1*gLBFjbWA2yahKMP0pe5grg.png" /><figcaption><em>GTM debug with session information</em></figcaption></figure><p>Rebuilding this was always highly unstable and connected with a lot of effort.</p><p>One Use Case would be:</p><p>If you track data using the Measurement Protocol, we were never able to fully replicate the GA4 session logic. These new variables might solve the issue, but we haven’t tested them yet.</p><p>Furthermore, you can push this data to another system to compare the data with GA4.</p><p>And there is one new Analytics Storage variable type available. Here you can define which value you want and from which Measurement ID to get the single value.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/772/1*1yNwE2j0a7TUrKjUFoTHQw.png" /><figcaption><em>Analytics storage variable</em></figcaption></figure><h3>Further Links</h3><p>This post is part of the Google Data Analytics series from <a href="https://www.datadice.io/">datadice</a> and explains to you every month the newest features in BigQuery, Data Studio, Google Analytics, and Google Tag Manager.</p><p>Check out our <a href="https://www.linkedin.com/company/datadice">LinkedIn</a> account to get insights into our daily working life and get important updates about BigQuery, Looker Studio, and marketing analytics.</p><p>We also started with our own YouTube channel. We talk about important DWH, BigQuery, Looker Studio, and many more topics. Check out the channel <a href="https://www.youtube.com/channel/UCpyCm0Pb2fqu5XnaiflrWDg">here</a>.</p><p>If you want to learn more about how to use Google Data Studio and take it to the next level in combination with BigQuery, check our Udemy course <a href="https://www.udemy.com/course/bigquery-data-studio-grundlagen/">here</a>.</p><p>If you are looking for help to set up a modern and cost-efficient data warehouse or analytical dashboards, send us an email to hello@datadice.io, and we will schedule a call.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=e28ae4d38be4" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Latest Updates on Google Data Analytics (November 2025)]]></title>
            <link>https://datadice.medium.com/latest-updates-on-google-data-analytics-november-2025-6b155c26ca3e?source=rss-2851976d5ad7------2</link>
            <guid isPermaLink="false">https://medium.com/p/6b155c26ca3e</guid>
            <category><![CDATA[google-analytics]]></category>
            <category><![CDATA[gemini]]></category>
            <category><![CDATA[bigquery]]></category>
            <category><![CDATA[logging]]></category>
            <category><![CDATA[json]]></category>
            <dc:creator><![CDATA[datadice]]></dc:creator>
            <pubDate>Wed, 03 Dec 2025 17:51:15 GMT</pubDate>
            <atom:updated>2025-12-03T17:51:15.141Z</atom:updated>
            <content:encoded><![CDATA[<h4>The highlights of the updates on BigQuery, Looker Studio, Google Analytics (GA) &amp; Google Tag Manager (GTM). By <a href="https://www.linkedin.com/in/alexander-junke-461375201/">Alexander Junke</a></h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*ukgBKFB1Xg-KCuixsz350w.gif" /></figure><p>In this blog post, I want to summarize the new releases from the Google tools that we use daily in <a href="https://www.datadice.io/">datadice</a>. Therefore, I want to give an overview of the new features of BigQuery, Dataform, Looker Studio, Google Analytics, and Google Tag Manager. Furthermore, I will focus on the releases that I consider to be the most important ones, and I will also name some other changes that were made.</p><p>If you want to take a closer look, here you can find the Release Notes from <a href="https://cloud.google.com/bigquery/docs/release-notes">BigQuery</a>, <a href="https://cloud.google.com/dataform/docs/release-notes">Dataform</a>, <a href="https://cloud.google.com/looker-studio/docs/release-notes">Looker Studio</a>, <a href="https://support.google.com/analytics/answer/9164320?hl=en">Google Analytics</a> &amp; <a href="https://support.google.com/tagmanager/answer/4620708?hl=en">Google Tag Manager</a>.</p><h3>BigQuery</h3><h4>Error handling support with Gemini</h4><p>Gemini now offers even better support for your SQL coding. You can use it to fix errors either before or after running your query.</p><p>Before execution: Highlight the problematic code and select Refine &gt; Fix it. A chat window will appear with a suggested solution. Simply click Apply to update the SQL code.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*awEJD2vsA1xHteo3f0Fykg.png" /></figure><p>After execution: If BigQuery shows an error, click the “Gemini suggested fixes” button. The chat will open and explain the fix. Clicking Apply &amp; Run automatically updates the code and re-executes the query.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*ukgBKFB1Xg-KCuixsz350w.gif" /></figure><h4>JSON_FLATTEN function</h4><p>This new function does exactly what its name implies: it flattens the JSON data passed as the first parameter.</p><p>The function recursively traverses a JSON object (even through arrays) and extracts all leaf nodes. It effectively transforms a hierarchical tree structure into a flat list of values.</p><pre>SELECT JSON_FLATTEN(JSON &#39;[[[[1], 2], 3], {&quot;earth&quot;: 3}, false]&#39;) AS json_flatten</pre><figure><img alt="" src="https://cdn-images-1.medium.com/max/312/1*WqsfkQZptSRVNsEbAcTLRg.png" /></figure><h4>Use Gemini 3.0 in generative AI functions</h4><p>BigQuery got a lot of easy-to-use AI functions for your SQL Code. Some of them I explained in our <a href="https://www.datadice.io/en/blog/latest-updates-google-data-analytics-october-2025">last blog post</a>.</p><p>Furthermore, you probably heard about the new Gemini 3.0. The new, most powerful version of Gemini.</p><p>Gemini 3.0 is not the default version for the AI functions yet. To use it, you need to define the endpoint in the function. The corresponding endpoint URL is (The project ID needs to be replaced):</p><p><a href="https://aiplatform.googleapis.com/v1/projects/PROJECT_ID/locations/global/publishers/google/models/gemini-3-pro-preview"><em>https://aiplatform.googleapis.com/v1/projects/PROJECT_ID/locations/global/publishers/google/models/gemini-3-pro-preview</em></a></p><p>Then you can do the following:</p><pre>SELECT<br>  title,<br>  movie_url,<br>  review,<br>  AI.CLASSIFY(<br>    review,<br>    categories =&gt; [&#39;negative&#39;, &#39;neutral&#39;, &#39;positive&#39;],<br>    connection_id =&gt; &#39;us.vertex_ai_us_connection&#39;,<br>    endpoint =&gt; &#39;https://aiplatform.googleapis.com/v1/projects/datadice/locations/global/publishers/google/models/gemini-3-pro-preview&#39;) AS category<br>FROM `bigquery-public-data.imdb.reviews`</pre><h4>BigQuery ML changes</h4><p>BigQuery ML supports the TimesFM 2.5 time series foundational model now.</p><p>Additionally, it supports a lot of AI functions now:</p><ul><li><a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-detect-anomalies">AI.DETECT_ANOMALIES</a></li><li><a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-generate-embedding">AI.GENERATE_EMBEDDING</a></li><li><a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-generate-text">AI.GENERATE_TEXT</a></li><li><a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-generate-table">AI.GENERATE_TABLE</a></li><li><a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-generate-bool">AI.GENERATE_BOOL</a></li><li><a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-generate-double">AI.GENERATE_DOUBLE</a></li><li><a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-generate-int">AI.GENERATE_INT</a></li><li><a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-similarity">AI.SIMILARITY</a></li><li><a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-embed">AI.EMBED</a></li><li><a href="https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-generate">AI.GENERATE</a></li></ul><h4>Other changes</h4><ul><li>Folders can be created in BigQuery to organize saved queries, canvases, notebooks, and more</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*0wx4TF3sfR-nsYx3y-7AzA.png" /></figure><ul><li>The query execution graph is able to show a query text heatmap. Further information can be found <a href="https://docs.cloud.google.com/bigquery/docs/query-plan-explanation#query_text_heatmap">here</a></li><li>The following SQL dialects can be translated to GoogleSQL: Apache Impala SQL and GoogleSQL. Translation of GoogleSQL can be used for improvements of the translated code from another dialect</li><li>A new BigQuery Agent Analytics plugin in the ADK is available to export the data from the agent interactions to BigQuery. Further information can be found <a href="https://cloud.google.com/blog/products/data-analytics/introducing-bigquery-agent-analytics/?e=48754805">here</a></li></ul><h3>Dataform</h3><h4>Small Changes</h4><p>Google just released minor improvements to Dataform:</p><ul><li>Support for custom constraints to allow better control over resources like “CompilationResult” or “WorkflowInvocation”</li><li>Creation of BigLake tables for Apache Iceberg in BigQuery</li></ul><h3>Looker Studio</h3><h4>Conditional Formatting on bar charts</h4><p>Conditional formatting is now available for bar charts. You can choose between two types:</p><ul><li>Rules: Change colors based on specific criteria</li><li>Gradients: Adjust color intensity based on the value</li></ul><p>With the Rules type, you can customize the appearance of bars and data labels. If you apply the rule to the entire row and the condition is met, all bars associated with that dimension are colored accordingly.</p><p>The remaining settings are identical to those for tables.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*rRJgjjoz6e5L4zHE-kXYDA.png" /><figcaption><em>Bar charts with conditional formatting</em></figcaption></figure><h4>Cloud Audit Logs (Pro)</h4><p>Information about administrative activities and data access is logged automatically and can be viewed in the Logs Explorer of the corresponding Google Cloud Project now. Logged events include:</p><ul><li>Permission Management</li><li>Ownership Transfers of dashboards or data sources</li><li>API calls</li></ul><p>In the Logs Explorer, you can find the logs under “Audited resource”:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*2s5Z31u1lpI962AZQ-JMZA.png" /><figcaption><em>Finding Looker Studio logs</em></figcaption></figure><h4>Parameters as default values in filters</h4><p>Parameters are a good opportunity to build a more complex dashboard with the help of the user’s input.</p><p>You can use the parameter now to define the standard value of a filter. The value of the parameter is used then, when the user did not choose a value for the filter.</p><p>As shown in the screenshot below, the parameter can have a default value as well, which is used in the filter too.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*9SIDlpwuTWo5ZwNyirMpog.png" /><figcaption><em>Setting up the parameter</em></figcaption></figure><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*bp3aYU0JLHhyCWQI-YvwOw.png" /><figcaption><em>Use the parameter as the default filter selection</em></figcaption></figure><h3>Google Analytics</h3><h4>User-provided data improvements</h4><p>You can send additional user data (like email or name) to Google Analytics to enable more reliable user analysis.</p><p>Google has improved the analysis capabilities of this feature to deliver better performance, specifically:</p><ul><li>A focus on activation and Ads Conversions</li><li>Improvements to Enhanced Conversions and Customer Match Audiences</li><li>More accurate attribution and event reporting</li></ul><p>Additionally, Google launched a new UPD infrastructure. This is currently used for customers who start sending UPD data. Customers with existing UPD setups will be migrated to the new infrastructure in Q2 2026.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*YPorKpJa95B6Tt_g5L9H-A.png" /><figcaption><em>Tracking UPD via GTM</em></figcaption></figure><h3>Google Tag Manager</h3><p>No further release for Google Tag Manager.</p><h3>Further Links</h3><p>This post is part of the Google Data Analytics series from <a href="https://www.datadice.io/">datadice</a> and explains to you every month the newest features in BigQuery, Data Studio, Google Analytics, and Google Tag Manager.</p><p>Check out our <a href="https://www.linkedin.com/company/datadice">LinkedIn</a> account to get insights into our daily working life and get important updates about BigQuery, Looker Studio, and marketing analytics.</p><p>We also started with our own YouTube channel. We talk about important DWH, BigQuery, Looker Studio, and many more topics. Check out the channel <a href="https://www.youtube.com/channel/UCpyCm0Pb2fqu5XnaiflrWDg">here</a>.</p><p>If you want to learn more about how to use Google Data Studio and take it to the next level in combination with BigQuery, check our Udemy course <a href="https://www.udemy.com/course/bigquery-data-studio-grundlagen/">here</a>.</p><p>If you are looking for help to set up a modern and cost-efficient data warehouse or analytical dashboards, send us an email to hello@datadice.io, and we will schedule a call.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=6b155c26ca3e" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Latest Updates on Google Data Analytics (October 2025)]]></title>
            <link>https://datadice.medium.com/latest-updates-on-google-data-analytics-october-2025-922bc0acc659?source=rss-2851976d5ad7------2</link>
            <guid isPermaLink="false">https://medium.com/p/922bc0acc659</guid>
            <category><![CDATA[ai]]></category>
            <category><![CDATA[ai-agent]]></category>
            <category><![CDATA[bigquery]]></category>
            <category><![CDATA[benchmark]]></category>
            <category><![CDATA[google-analytics]]></category>
            <dc:creator><![CDATA[datadice]]></dc:creator>
            <pubDate>Mon, 17 Nov 2025 11:33:50 GMT</pubDate>
            <atom:updated>2025-11-17T11:33:50.700Z</atom:updated>
            <content:encoded><![CDATA[<h4>The highlights of the updates on BigQuery, Looker Studio, Google Analytics (GA) &amp; Google Tag Manager (GTM). By <a href="https://www.linkedin.com/in/alexander-junke-461375201/">Alexander Junke</a></h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/640/1*Qo7XOpcl9c-FpwrxHRrulw.gif" /></figure><p>In this blog post, I want to summarize the new releases from the Google tools that we use daily in <a href="https://www.datadice.io/">datadice</a>. Therefore, I want to give an overview of the new features of BigQuery, Dataform, Looker Studio, Google Analytics, and Google Tag Manager. Furthermore, I will focus on the releases that I consider to be the most important ones, and I will also name some other changes that were made.</p><p>If you want to take a closer look, here you can find the Release Notes from <a href="https://cloud.google.com/bigquery/docs/release-notes">BigQuery</a>, <a href="https://cloud.google.com/dataform/docs/release-notes">Dataform</a>, <a href="https://cloud.google.com/looker-studio/docs/release-notes">Looker Studio</a>, <a href="https://support.google.com/analytics/answer/9164320?hl=en">Google Analytics</a> &amp; <a href="https://support.google.com/tagmanager/answer/4620708?hl=en">Google Tag Manager</a>.</p><h3>BigQuery</h3><h4>New Data Transfers</h4><p>There are new data sources available, where you can get the data from:</p><ul><li>PayPal</li><li>Stripe</li></ul><p>From PayPal, you can access Transactions, Disputes, Payments, Balance, Products, and Invoices. There are some things to know and some limitations, which can be found <a href="https://cloud.google.com/bigquery/docs/paypal-transfer">here</a>.</p><p>From Stripe, you can get a lot of data as well. The guide can be found <a href="https://cloud.google.com/bigquery/docs/stripe-transfer">here</a>.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*hQJK_DJPBhDedsanCt8p8w.png" /><figcaption><em>Select the PayPal or Stripe Transfer</em></figcaption></figure><p>Additionally, data from Google Analytics 4 can be imported as well. This Transfer imports aggregated data. Per Transfer, you can import one defined report. You can select a maximum of 9 dimensions and 10 metrics per Transfer.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/878/1*XiSEaYaR9EcsC91UYdHiPA.png" /><figcaption><em>Google Analytics 4 Transfer settings</em></figcaption></figure><p>Note: Some dimensions and metrics are not compatible with each other, as usual for GA4. With the support of the <a href="https://ga-dev-tools.google/ga4/dimensions-metrics-explorer/">GA4 Dimensions &amp; Metrics Explorer</a>, you can check if your selected combination is valid.</p><h4>Embed natural language as comments</h4><p>Access to AI features gets easier every day. Using Gemini to create your BigQuery Query is just one comment away.</p><p>You can do the following now:</p><ul><li>Open a new SQL Query editor</li><li>Write in a comment the analysis you want to do</li><li>Click enter</li><li>Wait until a SQL query is suggested</li><li>Click Tab to accept the suggested query</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/640/1*Qo7XOpcl9c-FpwrxHRrulw.gif" /><figcaption><em>Typing an AI prompt in a comment</em></figcaption></figure><h4>Navigation changes in BigQuery Studio</h4><p>BigQuery Studio got a new navigation menu. The explorer pane is now separated into three sections: Explorer, Classic Explorer, and Git repository.</p><p>The Classic Explorer is still the default choice, but the other sections can be selected at the top level.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/948/1*wQlBqNqSJWMWJzoEBhsCNA.png" /><figcaption><em>New Explorer Menu</em></figcaption></figure><p>You can still search in the new Explorer, but the search results are shown in a separate tab. Additionally, the Job history is part of the menu now, which opens a new tab with a list of the most recent jobs.</p><p>Furthermore, the way a new tab opens is completely new.</p><ul><li>Clicking on a resource opens it on the same tab</li><li>By clicking on a resource with Ctrl / Cmd it opens in a new tab</li><li>By default, the tab name is italicized. If you double-click on the name, it changes to a normal font, and then this tab will not be replaced</li></ul><p>And the third menu from the screenshot above is a dedicated tab for the linked repositories with BigQuery.</p><h4>Jobs detail page</h4><p>In the Jobs Explorer menu, you see a list of the historical BigQuery Jobs.</p><p>With the new feature you can click on a BigQuery Job to go to a Job Detail Page and observe the Performance of the Job. But even more interesting, you can compare two jobs with each other:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*PNdYBMWc0KhDiXp9ejHA4w.png" /><figcaption><em>Performance of a BigQuery Job</em></figcaption></figure><p>Then, select the jobs you want to compare. Unfortunately, you cannot search or filter the jobs list yet.</p><p>After the selection, you see the key metrics of both jobs next to each other. Apart from that, you can look at the SQL Queries and Execution graphs too.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*Alj9kYvuxVCQGtkuNrBZBA.png" /><figcaption><em>Compare two jobs with each other</em></figcaption></figure><h4>Data Engineering Agent</h4><p>The new Data Engineering Agent in BigQuery can be used to build pipelines with AI support.</p><p>When you create a new pipeline, you can click on “Ask agent” and chat with the agent. The agent merely proposes a pipeline configuration. You must apply these changes to activate them.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*Qmz8J-_kuf0rjrXrDNRFQA.png" /><figcaption><em>Create a pipeline with AI agent support</em></figcaption></figure><p>As you can see in the “Ask agent” modal, you can add instruction files. This helps the agent in creating the pipeline correctly.</p><h4>Managed AI functions</h4><p>These are really nice new features!</p><p>There are 3 easy-to-use AI functions you can use in every SQL Query in BigQuery.</p><p>For all these AI functions, you need to set up a BigQuery to Vertex AI connection. A guide can be found <a href="https://cloud.google.com/bigquery/docs/create-cloud-resource-connection#create-cloud-resource-connection">here</a>.</p><p>The first one is AI.CLASSIFY:</p><pre>SELECT<br>  title,<br>  movie_url,<br>  review,<br>  AI.CLASSIFY(<br>    review,<br>    categories =&gt; [&#39;negative&#39;, &#39;neutral&#39;, &#39;positive&#39;],<br>    connection_id =&gt; &#39;us.vertex_ai_us_connection&#39;) AS category<br>FROM `bigquery-public-data.imdb.reviews`</pre><ul><li>First input parameter: string input value (review)</li><li>Second input parameter: a certain number of categories the AI can choose from</li><li>Third input parameter: the connection_id</li><li>The fourth column of the output table represents the sentiment of the review: “negative, neutral, or positive”</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*kOD0hLYybIhcXwjkRwJtmA.png" /></figure><p>The second function is AI.SCORE:</p><pre>SELECT<br>  AI.SCORE((<br>    &quot;&quot;&quot;<br>    On a scale from 1 to 10, rate how much the reviewer liked the movie.<br>    Review:<br>    &quot;&quot;&quot;, review),<br>    connection_id =&gt; &#39;us.vertex_ai_us_connection&#39;) AS ai_rating,<br>  reviewer_rating AS human_rating,<br>  review<br>FROM `bigquery-public-data.imdb.reviews`</pre><ul><li>First input parameter: the prompt for the AI</li><li>Second input parameter: the connection_id</li><li>The first column of the output table contains the AI-predicted rating, while the second column shows the actual user rating</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*93VMmQ85UArwWtyk0dt9TQ.png" /></figure><p>The third function is <a href="http://ai.if">AI.IF</a>:</p><pre>SELECT<br>  title, <br>  review,<br>  AI.IF(<br>    (&#39;The review contains spoiler of the movie: &#39;, review),<br>    connection_id =&gt; &#39;us.vertex_ai_us_connection&#39;) AS review_contains_spoiler<br>FROM `bigquery-public-data.imdb.reviews`</pre><ul><li>First input parameter: the prompt for the AI</li><li>Second input parameter: the connection_id</li><li>The table’s third column contains a BOOLEAN value indicating whether the AI detected spoilers in the review</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*sccNiWSWP557pTxIr6R4mg.png" /></figure><h4>BigQuery ML changes</h4><p>Again I want to mention the changes happened to BigQuery ML:</p><ul><li>Contains a TimesFM univariate time series forecasting model now and can be used with the two functions <a href="https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-forecast">AI.FORECAST</a> and <a href="https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-ai-evaluate">AI.EVALUATE</a></li><li>Manage open models as Vertex AI endpoints, which has some benefits you can find <a href="https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-create-remote-model-open">here</a></li></ul><h4>Other changes</h4><p>There are a lot of other BigQuery changes I want to mention:</p><ul><li>Creation of reservation groups is possible, to have better control of slot allocation inside the group</li><li>Row capacity for Pivot tables in Connected Google Sheets is increased from 100.000 to 200.000</li><li>There is a <a href="https://docs.google.com/forms/d/e/1FAIpQLSe5KhRr81uUce6mKj8YrV1iFezGIydTxOcx8wUTqcBJP3e7vg/viewform">request form</a> available to sign in for early access to Conversational Analytics in BigQuery. When you get access, you can “chat” with your data and create agents</li></ul><h3>Dataform</h3><h4>Set the priority of BigQuery jobs</h4><p>In Dataform, there is a new option available for Workflow configurations and manual executions. You can run these jobs as high-priority jobs.</p><p>This option is activated by default for all existing workflows. High-priority jobs run immediately when they are triggered, independent of how big the workload is (from other jobs) at this time.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/756/1*KU9T9Ev4iSmFsgXP18T2wg.png" /><figcaption><em>Setting up the priority of the job</em></figcaption></figure><p>If the option is not activated and other jobs are running in parallel, this job will wait until the other jobs are completed.</p><h3>Looker Studio</h3><h4>Schedule reports with Slack (Pro)</h4><p>You can already send your dashboards around via e-mail, Google Chat, and more. This family got a new member: Slack!</p><p>The settings are the same as for Email Scheduling. You can select which pages you want to send and the delivery frequency. Specify the destination for the report by choosing a Slack channel or user.</p><p>We currently have some problems linking Slack with Looker Studio. Therefore, <a href="https://cloud.google.com/looker/docs/studio/slack">here</a> is a guide on how to set it up.</p><h3>Google Analytics</h3><h4>Import Meta and TikTok Costs</h4><p>Google adds more and more importers where you can get the cost data from. The goal is for Google Analytics to evolve into a central analysis hub where all key data is consolidated.</p><p>You can now add costs from Meta and TikTok, too. When the import starts, the last 24 months of historical data are imported automatically. If you need more data from before, you have to import the cost data manually.</p><p>This kind of import is just recommended when you use the same utm_source and utm_medium across your campaigns. If not, reporting problems can occur, and importing the cost data manually is the recommended way then.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/940/1*4AsjUPRiOwQnrUvFZG_9Zw.png" /><figcaption><em>Import Cost Data from Meta or TikTok</em></figcaption></figure><h4>Benchmarks for more metrics</h4><p>In your Google Analytics property, you get on the overview page some benchmark values for a certain number of metrics, like “New user rate”.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*V2MqzOMwLArokcXXh1ZpxQ.png" /><figcaption><em>Benchmark for “New user rate”</em></figcaption></figure><p>Before the change, it was limited to percentage or ratio metrics. Now the benchmarks for 20 metrics were added, which are absolute numbers like “New Users”.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*W5MVhWY8V0YDNppV3tGT_g.png" /><figcaption><em>Benchmark for “Views”</em></figcaption></figure><h3>Google Tag Manager</h3><p>No further release for Google Tag Manager.</p><h3>Further Links</h3><p>This post is part of the Google Data Analytics series from <a href="https://www.datadice.io/">datadice</a> and explains to you every month the newest features in BigQuery, Data Studio, Google Analytics, and Google Tag Manager.</p><p>Check out our <a href="https://www.linkedin.com/company/datadice">LinkedIn</a> account to get insights into our daily working life and get important updates about BigQuery, Looker Studio, and marketing analytics.</p><p>We also started with our own YouTube channel. We talk about important DWH, BigQuery, Looker Studio, and many more topics. Check out the channel <a href="https://www.youtube.com/channel/UCpyCm0Pb2fqu5XnaiflrWDg">here</a>.</p><p>If you want to learn more about how to use Google Data Studio and take it to the next level in combination with BigQuery, check our Udemy course <a href="https://www.udemy.com/course/bigquery-data-studio-grundlagen/">here</a>.</p><p>If you are looking for help to set up a modern and cost-efficient data warehouse or analytical dashboards, send us an email to hello@datadice.io, and we will schedule a call.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=922bc0acc659" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Latest Updates on Google Data Analytics (September 2025)]]></title>
            <link>https://medium.com/geekculture/latest-updates-on-google-data-analytics-september-2025-81153f920214?source=rss-2851976d5ad7------2</link>
            <guid isPermaLink="false">https://medium.com/p/81153f920214</guid>
            <category><![CDATA[canvas]]></category>
            <category><![CDATA[google-analytics]]></category>
            <category><![CDATA[treemap]]></category>
            <category><![CDATA[gemini]]></category>
            <category><![CDATA[data-science]]></category>
            <dc:creator><![CDATA[datadice]]></dc:creator>
            <pubDate>Wed, 15 Oct 2025 16:25:08 GMT</pubDate>
            <atom:updated>2025-10-15T16:25:08.560Z</atom:updated>
            <content:encoded><![CDATA[<h4>The highlights of the updates on BigQuery, Looker Studio, Google Analytics (GA) &amp; Google Tag Manager (GTM). By <a href="https://www.linkedin.com/in/alexander-junke-461375201/">Alexander Junke</a></h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*AGZaT0zzZR17DcPSde6Zrw.gif" /></figure><p>In this blog post, I want to summarize the new releases from the Google tools that we use daily in <a href="https://www.datadice.io/">datadice</a>. Therefore, I want to give an overview of the new features of BigQuery, Dataform, Looker Studio, Google Analytics, and Google Tag Manager. Furthermore, I will focus on the releases that I consider to be the most important ones, and I will also name some other changes that were made.</p><p>If you want to take a closer look, here you can find the Release Notes from <a href="https://cloud.google.com/bigquery/docs/release-notes">BigQuery</a>, <a href="https://cloud.google.com/dataform/docs/release-notes">Dataform</a>, <a href="https://cloud.google.com/looker-studio/docs/release-notes">Looker Studio</a>, <a href="https://support.google.com/analytics/answer/9164320?hl=en">Google Analytics</a> &amp; <a href="https://support.google.com/tagmanager/answer/4620708?hl=en">Google Tag Manager</a>.</p><h3>BigQuery</h3><h4>Data preparation changes</h4><p>Google is placing a strong emphasis on BigQuery’s data preparation capabilities, aiming to decrease the reliance on SQL models and make data analysis more accessible to a wider audience.</p><p>Now you can do the following with data preparation:</p><ul><li>Loading files from Cloud Storage into data preparation</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/962/1*Cny5UncqqEQhbUA1xH4a8Q.png" /><figcaption><em>Import GCS data into data preparation</em></figcaption></figure><ul><li>Unnesting arrays (Putting each array element into a single row)</li><li>Flattening records</li></ul><h4>Data Science Agent changes</h4><p>The Data Science Agent is the other new and prominent tool in BigQuery that has a lot of new features. The Data Science Agent itself I explained in my former <a href="https://www.datadice.io/en/blog/latest-updates-google-data-analytics-august-2025">blog post</a>.</p><p>The Agent got some improvements in the last days:</p><ul><li>Using BigQuery ML and DataFrames in your prompts</li><li>Adding a BigQuery table with an @ or a file with a + to your prompt</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*wryH5YP5FNUOn5IZcoFPqA.png" /><figcaption><em>Adding a table to the Data Science Agent</em></figcaption></figure><ul><li>Using Apache Spark or PySpark keywords in your prompt</li></ul><h4>Destination table node in Data canvas</h4><p>The data canvas in BigQuery can be used to build chains of data models. You can include joins, custom queries, and many more.</p><p>Now there is the possibility to add a data destination node, which you can use after a query node. After setting up the destination dataset and table, you can select “Keep in Sync”. When it is active, the former query node overrides the destination table automatically.</p><p>Options like Table Partitioning or Clustering can not be set up.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*AGZaT0zzZR17DcPSde6Zrw.gif" /><figcaption><em>Adding a destination node to the data canvas</em></figcaption></figure><h4>Gemini CLI extension</h4><p>For a long time, a <a href="https://github.com/google-gemini/gemini-cli?tab=readme-ov-file#quickstart">Gemini CLI</a> has been available for your device to use the AI capabilities. The CLI got an extension to connect to your GCP Project and ask Gemini about your tables and data.</p><p>There is a Data Analytics Extension and a Conversational Analytics Extension available:</p><p><a href="https://github.com/gemini-cli-extensions/bigquery-data-analytics">Data Analytics Extension</a>:</p><ul><li>Finding Tables in BigQuery</li><li>Execute SQL models</li><li>Do forecasting or contribution analysis</li></ul><p><a href="https://github.com/gemini-cli-extensions/bigquery-conversational-analytics">Conversational Analytics Extension</a>:</p><ul><li>Asking complex questions about the data</li><li>A server-side analytics agent comes into action here</li></ul><p>On the cost side, you need to pay for the tables Gemini reads (based on the generated SQL queries), but there are no additional costs (for now).</p><p>A guide on how to use the Gemini CLI can be found <a href="https://cloud.google.com/bigquery/docs/develop-with-gemini-cli">here</a>.</p><h4>Add Tables and Views to BigQuery pipelines</h4><p>We already made a detailed blog post about BigQuery Pipelines (formerly called Workflows) <a href="https://www.datadice.io/en/blog/introducing-bigquery-workflows">here</a>.</p><p>Pipelines were able to connect new or existing Queries, Notebooks and Data preparation. New members of this family are tables and views. You can build the following:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/992/1*1XJcTFqZkyMW8Gm9lwWhNQ.png" /><figcaption><em>A view and a table in a pipeline</em></figcaption></figure><p>When you set up a view or table, you can just enter the name, but not the dataset. The default dataset is “dataform”. You can change it afterwards in the details of the table/view.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*n0OTObO2z3qvZMMzEL_-cg.png" /><figcaption><em>Setting up the dataset for a destination node</em></figcaption></figure><p>The desired output of the table/view you need to define in the corresponding tasks, so it works differently as mentioned earlier for the data canvas update, where you just define the output table.</p><p>Changes to the table/view models are always automatically saved.</p><h4>BigQuery ML changes</h4><p>There are some new BigQuery ML changes available, which I want to mention:</p><ul><li>Visualisation of model monitoring is available. More information can be found <a href="https://cloud.google.com/bigquery/docs/model-monitoring-overview#monitoring_visualization">here</a>.</li><li>Different Embedded Models are available and can be used with the function “ML.GENERATE_EMBEDDING”</li><li>Performing supervised tuning on a remote model with gemini-2.5-pro or gemini-2.5-flash-lite model</li></ul><h3>Dataform</h3><h4>Update Incremental Tables</h4><p>Just a small change:</p><p>If you have an incremental table schema for one model, you can update it without a full table refresh.</p><h4>Automatic Processing Location</h4><p>In the repository settings in the workflow_settings.yaml file, you can set a default execution location:</p><pre>defaultLocation: europe-west3</pre><p>It is not mandatory anymore, because if there is no defaultLocation, it takes the location from the datasets that are referenced in the SQL code.</p><h3>Looker Studio</h3><h4>Treemap charts improvements</h4><p>There are some new features for the Treemap chart:</p><ul><li>There is a separate field to choose which dimension or metric defines the colour</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/974/1*7sQFBvfkS4ZG6lmNuy6_ug.png" /><figcaption><em>Fields for defining the colour in Treemaps</em></figcaption></figure><ul><li>Changing the colour shades</li><li>Change the border radius for the shapes (shown in the upper screenshot)</li><li>Choosing different Label options</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/982/1*y036s3TTnbQU2pn7KA9tyw.png" /><figcaption><em>Data labels options for Treemaps</em></figcaption></figure><h4>Sorting charts</h4><p>Tables in Looker Studio dashboards can now be sorted by up to 10 fields.</p><p>All fields of the data source can be used, not just the ones which are used in the table.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/334/1*_k4_RqU1GgplFzaqCkEXCg.png" /><figcaption><em>Multiple Sorts for a table</em></figcaption></figure><h3>Google Analytics</h3><h4>Import Pinterest and Snapchat Costs</h4><p>There are new cost data import options available directly in GA4.</p><p>You can add Pinterest and Snap Ads costs now. One limitation is that only the data of the last 24 months gets imported.</p><p>If you have already imported data with the manual approach, you need to take care that you have no duplicate cost data in the property. No automatic deduplication is happening then.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*2BYln2zGl4irJlKN7joCcw.png" /><figcaption><em>Add Snap or Pinterest costs</em></figcaption></figure><p>A guide to importing Pinterest data can be found <a href="https://support.google.com/analytics/answer/16537263">here</a>, and for Snapchat <a href="https://support.google.com/analytics/answer/16489820">here</a>.</p><h3>Google Tag Manager</h3><p>No further release for Google Tag Manager.</p><h3>Further Links</h3><p>This post is part of the Google Data Analytics series from <a href="https://www.datadice.io/">datadice</a> and explains to you every month the newest features in BigQuery, Data Studio, Google Analytics, and Google Tag Manager.</p><p>Check out our <a href="https://www.linkedin.com/company/datadice">LinkedIn</a> account to get insights into our daily working life and get important updates about BigQuery, Looker Studio, and marketing analytics.</p><p>We also started with our own YouTube channel. We talk about important DWH, BigQuery, Looker Studio, and many more topics. Check out the channel <a href="https://www.youtube.com/channel/UCpyCm0Pb2fqu5XnaiflrWDg">here</a>.</p><p>If you want to learn more about how to use Google Data Studio and take it to the next level in combination with BigQuery, check our Udemy course <a href="https://www.udemy.com/course/bigquery-data-studio-grundlagen/">here</a>.</p><p>If you are looking for help to set up a modern and cost-efficient data warehouse or analytical dashboards, send us an email to hello@datadice.io, and we will schedule a call.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=81153f920214" width="1" height="1" alt=""><hr><p><a href="https://medium.com/geekculture/latest-updates-on-google-data-analytics-september-2025-81153f920214">Latest Updates on Google Data Analytics (September 2025)</a> was originally published in <a href="https://medium.com/geekculture">Geek Culture</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Latest Updates on Google Data Analytics (August 2025)]]></title>
            <link>https://datadice.medium.com/latest-updates-on-google-data-analytics-august-2025-f3ff0ad45176?source=rss-2851976d5ad7------2</link>
            <guid isPermaLink="false">https://medium.com/p/f3ff0ad45176</guid>
            <category><![CDATA[maps]]></category>
            <category><![CDATA[google-analytics]]></category>
            <category><![CDATA[data-science]]></category>
            <category><![CDATA[javascript]]></category>
            <category><![CDATA[chained-function]]></category>
            <dc:creator><![CDATA[datadice]]></dc:creator>
            <pubDate>Thu, 25 Sep 2025 18:59:13 GMT</pubDate>
            <atom:updated>2025-09-25T18:59:13.795Z</atom:updated>
            <content:encoded><![CDATA[<h4>The highlights of the updates on BigQuery, Looker Studio, Google Analytics (GA) &amp; Google Tag Manager (GTM). By <a href="https://www.linkedin.com/in/alexander-junke-461375201/">Alexander Junke</a></h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*-Jo4ggW-yewet3KWPFQsRw.gif" /></figure><p>In this blog post, I want to summarize the new releases from the Google tools that we use daily in <a href="https://www.datadice.io/">datadice</a>. Therefore, I want to give an overview of the new features of BigQuery, Dataform, Looker Studio, Google Analytics, and Google Tag Manager. Furthermore, I will focus on the releases that I consider to be the most important ones, and I will also name some other changes that were made.</p><p>If you want to take a closer look, here you can find the Release Notes from <a href="https://cloud.google.com/bigquery/docs/release-notes">BigQuery</a>, <a href="https://cloud.google.com/dataform/docs/release-notes">Dataform</a>, <a href="https://cloud.google.com/looker-studio/docs/release-notes">Looker Studio</a>, <a href="https://support.google.com/analytics/answer/9164320?hl=en">Google Analytics</a> &amp; <a href="https://support.google.com/tagmanager/answer/4620708?hl=en">Google Tag Manager</a>.</p><h3>BigQuery</h3><h4>Data Science Agent</h4><p>Google is adding more and more ways to interact with your data by using AI. With the new Data Science Agent, you can write certain Gemini prompts against your data, and the AI will create the corresponding analysis in a Notebook.</p><p>How to start the Agent:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*-Jo4ggW-yewet3KWPFQsRw.gif" /></figure><p>Gemini creates a list of todos it would handle, and if you accept them, it will start with the analysis:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/670/1*Xf51jnzf-VVFt5PGBCLm_Q.png" /><figcaption>Accept the procedure</figcaption></figure><p>Every time it creates a request for the data, you need to accept it:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*ZQ7HZnMZaQv3n22BryneKw.png" /><figcaption><em>Example data request</em></figcaption></figure><p>And at the end, it creates a summary with the insights:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/864/1*iITky8UO81uhktYrssn_3A.png" /><figcaption><em>Summary from Data Science Agent</em></figcaption></figure><h4>Chained function call</h4><p>A feature to make your queries more readable, but it is just an optional way of coding.</p><p>You can chain multiple functions together, where the order is important and the single parts are separated by a dot.</p><p>Example:</p><pre>SELECT<br>  (&#39; Mercury Saturn Earth Mars &#39;)<br>  .REPLACE(&#39;Saturn&#39;, &#39;Venus&#39;)<br>  .CONCAT(&#39;Jupiter&#39;)<br>  .TRIM()<br>  .CONCAT (&#39; Saturn&#39;)<br><br>-&gt; &quot;Mercury Venus Earth Mars Jupiter Saturn&quot;</pre><p>There are some limitations or requirements for chained functions you can find <a href="https://cloud.google.com/bigquery/docs/reference/standard-sql/functions-reference#chained-function-calls">here</a>.</p><h4>Temporary variables</h4><p>With this new feature, you can set up variables just for one column calculation. It is called WITH expressions. The WITH clause to create temporary tables is a different thing and should not be mixed up.</p><p>The created variable(s) in the WITH expression are just available in this expression/column.</p><p>Example:</p><pre>SELECT WITH(x AS &#39;mercury &#39;,<br>            y AS CONCAT(x, &#39;earth &#39;),<br>            z AS REPLACE(y, &#39;earth &#39;, &#39;venus &#39;),<br>            CONCAT(x, z)) AS result,<br><br>-&gt; &quot;mercury mercury venus&quot;</pre><p>You can define a variable to use it multiple times in the calculation of the value.</p><p>The following example leads to an error, because the variable is not available for the column “result_2”:</p><pre>SELECT WITH(x AS &#39;mercury &#39;,<br>            y AS CONCAT(x, &#39;earth &#39;),<br>            z AS REPLACE(y, &#39;earth &#39;, &#39;venus &#39;),<br>            CONCAT(x, z)) AS result,<br>            y AS result_2<br><br>-&gt; Unrecognized name: y</pre><h4>Show data in a map</h4><p>BigQuery already has some visualization possibilities to get more insights into your query results. Next to Line, Bar, and Scatter, there is a map visualization available now.</p><p>Geographical data can be shown on a map now. Additionally, some basic setups for the map can be made:</p><ul><li>Color Schema</li><li>Opacity</li><li>Choose a data column</li><li>Point size</li></ul><p>Example:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/640/1*EeBFj6_bAdfTGI-tGSHrKw.gif" /><figcaption><em>Map visualization in BigQuery</em></figcaption></figure><h4>New Reference panel</h4><p>It’s a new small panel on the right side of the SQL Editor. The panel shows up when you click on “Query” on a table.</p><p>With the Reference menu, you can insert a new query snippet. It adds the SQL Query “SELECT FROM `project_name.dataset_name.table_name` LIMIT 1000”. By clicking on the columns, you add the fields to the SQL Editor.</p><p>Furthermore, you can click on Preview, and a new overlay appears where you can scroll through the data.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*rMMPFDbnjffqGg955NkLaQ.png" /><figcaption><em>Reference panel</em></figcaption></figure><h4>Small Changes</h4><p>BigQuery got a lot of new features in August, so I want to mention some further updates:</p><ul><li>The advanced runtime feature includes the short query optimization feature now</li><li>Query results can be saved to Google Cloud Storage as JSON, Avro, or Parquet</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/202/1*ZKH_2IiGUtcputX_SEdwLA.png" /></figure><ul><li>The data preparation with Gemini support got the “data deduplication” and “data aggregation” features</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/640/1*FOrLK1sU2up1G8Czif4xCA.gif" /><figcaption><em>Data preparation with Gemini</em></figcaption></figure><h3>Dataform</h3><p>No further release for Dataform.</p><h3>Looker Studio</h3><h4>Colouring of embedded query results in text</h4><p>You can enhance your insights in the dashboards by displaying specific query results within text. With the update, conditional formatting for these query results is active now, so they can have a coloured background or font.</p><p>The conditional formatting menu works the same as the one for tables.</p><p>You need to add the text variable by clicking on it in the text.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*gHTG7mtqSHBj6DkIZ_ufsg.png" /><figcaption><em>Edit a text variable</em></figcaption></figure><p>Then you can click on “Conditional Formatting”</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*-MB7_SvylKgHQk-94oKy0g.png" /><figcaption><em>Select conditional formatting</em></figcaption></figure><h4>Data labels for waterfall charts</h4><p>In waterfall charts, you can customize the labels a bit more now.</p><p>You can set up the label position, inside and outside (which did not change anything in my example, probably it depends on different bar relations), and some contrast settings.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/956/1*enc-8DE-r8yeaKKXWWcctA.png" /><figcaption><em>Waterfall chart with labels</em></figcaption></figure><h4>Setting up a data label background color</h4><p>A lot of small new features for Looker Studio.</p><p>For data labels in your charts, you can add a background colour to them, so that the data labels are more visible.</p><p>In the style tab, you can add a data label to every shown metric.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/890/1*Zp4IagdiKY51SKVmmjnilg.png" /><figcaption><em>Chart with label background</em></figcaption></figure><h4>Responsive reports: Vertical stacking</h4><p>Multiple parts can be stacked on each other now in responsive reports.</p><p>With this section, I want to remind you that the responsive version of Looker Studio is available. These reports reorganize the arrangement of the dashboard elements based on the screen size. In our Blog Post with the March updates, we describe the feature in more <a href="https://www.datadice.io/en/blog/latest-updates-on-google-data-analytics-march-2025">detail</a>.</p><h3>Google Analytics</h3><h4>Ecommerce data availability</h4><p>Just a small update. Some Item-scoped Ecommerce dimensions are available in more reports now.</p><ul><li>In Reporting sections as a secondary dimension, in filters, comparisons, and customizations</li><li>Ecommerce metrics are available in Reporting customizations</li></ul><p>Additionally, all match types can be used with these ecommerce dimensions in e.g. reporting filters and comparisons.</p><h3>Google Tag Manager</h3><h3>New JavaScript APIs</h3><p>There are multiple API endpoints available to build your own tag, client or variable templates in the server GTM.</p><p>The new readAnalyticsStorage API gives you the ability to access the current client_id and session_id from the user. Before, attempts were made to get these values from the cookies and through some kind of reverse engineering. This approach was not really stable because Google can change these cookies quite regularly.</p><p>This new API now offers solid access to this user data. With the following code, you can get the client_id from the user:</p><pre>const readAnalyticsStorage = require(&#39;readAnalyticsStorage&#39;);<br>const analyticsStorageData = readAnalyticsStorage();<br><br>console.log(analyticsStorageData.client_id);</pre><h3>Further Links</h3><p>This post is part of the Google Data Analytics series from <a href="https://www.datadice.io/">datadice</a> and explains to you every month the newest features in BigQuery, Data Studio, Google Analytics, and Google Tag Manager.</p><p>Check out our <a href="https://www.linkedin.com/company/datadice">LinkedIn</a> account to get insights into our daily working life and get important updates about BigQuery, Looker Studio, and marketing analytics.</p><p>We also started with our own YouTube channel. We talk about important DWH, BigQuery, Looker Studio, and many more topics. Check out the channel <a href="https://www.youtube.com/channel/UCpyCm0Pb2fqu5XnaiflrWDg">here</a>.</p><p>If you want to learn more about how to use Google Data Studio and take it to the next level in combination with BigQuery, check our Udemy course <a href="https://www.udemy.com/course/bigquery-data-studio-grundlagen/">here</a>.</p><p>If you are looking for help to set up a modern and cost-efficient data warehouse or analytical dashboards, send us an email to hello@datadice.io, and we will schedule a call.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=f3ff0ad45176" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Latest Updates on Google Data Analytics (July 2025)]]></title>
            <link>https://medium.com/geekculture/latest-updates-on-google-data-analytics-july-2025-4252b795c9f2?source=rss-2851976d5ad7------2</link>
            <guid isPermaLink="false">https://medium.com/p/4252b795c9f2</guid>
            <category><![CDATA[mls]]></category>
            <category><![CDATA[json]]></category>
            <category><![CDATA[looker-studio]]></category>
            <category><![CDATA[bigquery]]></category>
            <category><![CDATA[google-analytics]]></category>
            <dc:creator><![CDATA[datadice]]></dc:creator>
            <pubDate>Thu, 28 Aug 2025 11:24:52 GMT</pubDate>
            <atom:updated>2025-08-28T11:24:52.245Z</atom:updated>
            <content:encoded><![CDATA[<h4>The highlights of the updates on BigQuery, Looker Studio, Google Analytics (GA) &amp; Google Tag Manager (GTM). By <a href="https://www.linkedin.com/in/alexander-junke-461375201/">Alexander Junke</a></h4><figure><img alt="" src="https://cdn-images-1.medium.com/max/640/0*XcrG-6nqtKhA8y7l" /></figure><p>In this blog post, I want to summarize the new releases from the Google tools that we use daily in <a href="https://www.datadice.io/">datadice</a>. Therefore, I want to give an overview of the new features of BigQuery, Dataform, Looker Studio, Google Analytics, and Google Tag Manager. Furthermore, I will focus on the releases that I consider to be the most important ones, and I will also name some other changes that were made.</p><p>If you want to take a closer look, here you can find the Release Notes from <a href="https://cloud.google.com/bigquery/docs/release-notes">BigQuery</a>, <a href="https://cloud.google.com/dataform/docs/release-notes">Dataform</a>, <a href="https://cloud.google.com/looker-studio/docs/release-notes">Looker Studio</a>, <a href="https://support.google.com/analytics/answer/9164320?hl=en">Google Analytics</a> &amp; <a href="https://support.google.com/tagmanager/answer/4620708?hl=en">Google Tag Manager</a>.</p><h3>BigQuery</h3><h4>Flatten JSON Columns</h4><p>In the data preparation section in BigQuery, you can now easily flatten a JSON Column. It is important that the column data type is JSON and not a STRING.</p><p>In the data preparation, you just need to click on the JSON column and then “Flatten”. If there are multiple levels in the JSON, just the first level gets flattened after the first click, but the new column can be flattened again.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*GHs1SveBGNRPCZJl" /><figcaption><em>JSON data in data preparation</em></figcaption></figure><p>It is a good feature, because flattening complex JSON structures is always time-consuming, and using this feature (with Gemini support) is a useful tool.</p><h4>Comments in BigQuery</h4><p>There is the opportunity to add comments to notebooks, data canvases, data preparation, and saved queries now.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/640/0*LqtL_dUMClfhvgXE" /><figcaption><em>Adding a comment</em></figcaption></figure><p>The comment functionality is quite similar to the one in Google Docs, which is a good solution. You can easily switch to resolved comments as well.</p><p>However, it’s not possible to mark another person so that they receive an email. Hopefully, this will be added in an update in the future.</p><h4>BigQuery ML models in UI</h4><p>You can create BigQuery ML models completely in the user interface now. Just a dataset is needed, and you can create the ML model inside.</p><p>There is still the possibility to code everything, but the editor looks promising, and especially the short descriptions of the steps and choices could be really helpful.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/640/0*nwYLi2vCFvu7tWFp" /><figcaption><em>Implement a BigQuery ML model in the UI</em></figcaption></figure><h4>Pipe Syntax improvement</h4><p>The pipe syntax in BigQuery is another way to write SQL Code. You define every step, and the order of the statements defines the execution order. The statements are separated with the pipe symbol.</p><p>The pipe syntax got some new functionalities:</p><ul><li>DISTINCT</li><li>WITH</li><li>Names Windows</li></ul><p>Example for DISTINCT:</p><blockquote>(</blockquote><blockquote>SELECT ‘mercury’ AS item, 1 AS position</blockquote><blockquote>UNION ALL</blockquote><blockquote>SELECT ‘venus’ AS item, 2 AS position</blockquote><blockquote>UNION ALL</blockquote><blockquote>SELECT ‘venus’ AS item, 2 AS position</blockquote><blockquote>UNION ALL</blockquote><blockquote>SELECT ‘earth’ AS item, 3 AS position</blockquote><blockquote>)</blockquote><blockquote>|&gt; DISTINCT</blockquote><blockquote>|&gt; WHERE position &gt;= 2</blockquote><blockquote>|&gt; WHERE position &lt;= 4</blockquote><h4>Data Policies on columns</h4><p>Next to Policy tags, you can also use data policies to restrict access to certain columns. There is a difference in how to assign these two kinds of restrictions:</p><ul><li>Data Policies: BigQuery <a href="https://cloud.google.com/bigquery/docs/reference/bigquerydatapolicy/rest">Data Policy API</a> or DDL statements</li><li>Policy Tags: In the BigQuery UI</li></ul><p><a href="https://cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column">Here</a> can be found how to create, update, and delete data policies.</p><h3>Dataform</h3><p>No further release for Dataform.</p><h3>Looker Studio</h3><h4>New Alignment option</h4><p>There is a new chart setting available in your Looker Studio reports. With the option “Align legend with grid” you can control if the legend alignment should be based on the chart title or chart grid.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*zybx0JhD7clFOUFv" /><figcaption><em>The different legend alignments</em></figcaption></figure><p>As standard behaviour, the setting is activated.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/414/0*UpCajb1mJr73bTBR" /><figcaption><em>“Align legend with grid” option</em></figcaption></figure><h4>Highlight Applied Filter</h4><p>The menu “View applied filter” is really useful to see which filters affect which charts.</p><p>You can see all active filters on the page, or you can select one component and see which filters are active for it.</p><p>As a new feature, you can click on one component on “Highlight” and you see a coloured border on the chart to find it more easily.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/640/0*hhrOknkkWc5vYpYz" /><figcaption><em>Highlight filtered components</em></figcaption></figure><h4>Faster responses for BigQuery data</h4><p>When your report uses BigQuery data sources, you may have already recognized an improvement in the report performance.</p><p>Because the connector can use the short query optimized mode. For small requests, it returns the results immediately and does not create a BigQuery job for it.</p><p>Important: This performance boost is only available when the datasource uses Viewers or Owner Credentials.</p><h4>Small Changes</h4><p>There are a lot of small changes that are important to mention:</p><ul><li>New size for report canvas: Size A4 (portrait or landscape)</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*oh3Oa3mALgF61i4W" /><figcaption><em>Choose the new A4 canvas sizes</em></figcaption></figure><ul><li>Adding alternative texts to an image (e.g. for a Screenreader)</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1006/0*KAyYbHf_l5zAPl1H" /><figcaption><em>Add an alt text to an image</em></figcaption></figure><ul><li>Adding a report description, which is even used in report search and can be added in the edit mode of the report in the “3 dots menu” &gt; “report details”</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*staRMouTW3PQf4yr" /><figcaption><em>Add a report description</em></figcaption></figure><h3>Google Analytics</h3><h4>Items data import</h4><p>You can import item data to GA4, and now you can even upload item custom dimensions.</p><p>Before you upload the data, you need to create the custom dimensions in the property first.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*VEs8DzRS5GCLkjTm" /><figcaption><em>Add a new custom dimension</em></figcaption></figure><p>Then, under “Data import” you can import the item data via SFTP or CSV.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*0BDP821edooOWe78" /><figcaption><em>Upload item data into the GA4 property</em></figcaption></figure><h4>Import Reddit Ads data</h4><p>You can import cost data from Reddit into your GA4 property.</p><p>How it works:</p><ul><li>Go to the Admin Section of your GA4 Property</li><li>In the section “Data Collection and modification” click on “Data import”</li><li>Write a name, select “Cost Data” (nothing else is available for Reddit), select the import source “Reddit”, and click on Connect</li><li>Then go through the authorization steps, map the fields, and the connection is set up</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*XSsok-qPfxxRZuFe" /><figcaption><em>Select Reddit cost data import</em></figcaption></figure><h4>New default reports for focus on lead generation</h4><p>When you create the GA4 Property, you need to answer, what are your business objectives.</p><p>Depending on the answer, the default reports of your property changes.</p><p>There is a change when “Generate leads” is selected as the objective.</p><ul><li>Two new default reports: “Lead Acquisition” and “Lead Disqualification and Loss”</li><li>New Lead Generation audience templates</li></ul><p>Just to mention again, the reports just show data when the right events with the right structure get sent to GA4.</p><p>Note: You can also change the business objectives later in the GA4 property settings:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*xo1Z832zQqC0Cdvc" /><figcaption><em>Change the business objectives</em></figcaption></figure><h3>Google Tag Manager</h3><h4>Unconsented requests in Floodlight</h4><p>When you configure the Consent State in your Client GTM Container and send this information to the Server Container, the Floodlight Tags also send unconsented requests to the Floodlight server.</p><h3>Further Links</h3><p>This post is part of the Google Data Analytics series from <a href="https://www.datadice.io/">datadice</a> and explains to you every month the newest features in BigQuery, Data Studio, Google Analytics, and Google Tag Manager.</p><p>Check out our <a href="https://www.linkedin.com/company/datadice">LinkedIn</a> account to get insights into our daily working life and get important updates about BigQuery, Looker Studio, and marketing analytics.</p><p>We also started with our own YouTube channel. We talk about important DWH, BigQuery, Looker Studio, and many more topics. Check out the channel <a href="https://www.youtube.com/channel/UCpyCm0Pb2fqu5XnaiflrWDg">here</a>.</p><p>If you want to learn more about how to use Google Data Studio and take it to the next level in combination with BigQuery, check our Udemy course <a href="https://www.udemy.com/course/bigquery-data-studio-grundlagen/">here</a>.</p><p>If you are looking for help to set up a modern and cost-efficient data warehouse or analytical dashboards, send us an email to hello@datadice.io, and we will schedule a call.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=4252b795c9f2" width="1" height="1" alt=""><hr><p><a href="https://medium.com/geekculture/latest-updates-on-google-data-analytics-july-2025-4252b795c9f2">Latest Updates on Google Data Analytics (July 2025)</a> was originally published in <a href="https://medium.com/geekculture">Geek Culture</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
    </channel>
</rss>