Tested tool guide
Tested browser tools
Checked August 16, 2026
What Looker Studio Query Helper does, with a checked example
Reporting logic can be drafted here before it is added to a Looker Studio data source or chart. The helper assembles calculated fields, searched CASE expressions, and regular-expression formulas, then evaluates them against sample rows supplied by the user. This makes category mappings and text-matching rules easier to inspect. The important distinction is that a successful preview checks the provided examples, not compatibility with every connector, field type, aggregation context, or value in the eventual report.
Worked example
A concrete input and expected output from the current implementation.
Input
Formula:
CASE
WHEN Sessions >= 100 THEN "High"
ELSE "Low"
END
Sample data:
Sessions
125
80
->
Expected output
Sessions | Result
125 | High
80 | Low
The first row satisfies Sessions >= 100, so the CASE expression returns "High". The second row does not satisfy the condition and therefore follows the ELSE branch.