From 2bed7f3557bfad55429370a7d4d289f48ee9d7c8 Mon Sep 17 00:00:00 2001 From: Jaswanth-Sriram-Veturi Date: Thu, 18 Jul 2024 17:35:07 +0530 Subject: [PATCH] docs: fix sql expression example --- docs/docs/using-superset/creating-your-first-dashboard.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/using-superset/creating-your-first-dashboard.mdx b/docs/docs/using-superset/creating-your-first-dashboard.mdx index 95e6512782a25..8a7343d7a8336 100644 --- a/docs/docs/using-superset/creating-your-first-dashboard.mdx +++ b/docs/docs/using-superset/creating-your-first-dashboard.mdx @@ -106,7 +106,7 @@ You can also certify metrics if you'd like for your team in this view. 2. Virtual calculated columns: you can write SQL queries that customize the appearance and behavior -of a specific column (e.g. `CAST(recovery_rate) as float`). +of a specific column (e.g. `CAST(recovery_rate as float)`). Aggregate functions aren't allowed in calculated columns.