diff --git a/trymito.io/pages/excel-to-python/[...slug].tsx b/trymito.io/pages/excel-to-python/[...slug].tsx
index cc530a37c..3ddf7a474 100644
--- a/trymito.io/pages/excel-to-python/[...slug].tsx
+++ b/trymito.io/pages/excel-to-python/[...slug].tsx
@@ -32,7 +32,7 @@ require('prismjs/components/prism-python');
import Link from 'next/link';
import { arraysContainSameValueAndOrder } from '../../utils/arrays';
-import { PLAUSIBLE_INSTALL_DOCS_CTA_LOCATION_EXCEL_TO_PYTHON_GLOSSARY_IN_CONTENT_CTA, PLAUSIBLE_INSTALL_DOCS_CTA_LOCATION_EXCEL_TO_PYTHON_GLOSSARY_TOC_CTA, PLAUSIBLE_MITO_EXPORTED_FUNCTION_CODE_COPIED } from '../../utils/plausible';
+import { PLAUSIBLE_INSTALL_DOCS_CTA_LOCATION_EXCEL_TO_PYTHON_GLOSSARY_IN_CONTENT_CTA, PLAUSIBLE_INSTALL_DOCS_CTA_LOCATION_EXCEL_TO_PYTHON_GLOSSARY_TOC_CTA, PLAUSIBLE_COPIED_CODE_MITO_EXPORTED_FUNCTION, PLAUSIBLE_COPIED_CODE_NON_MITO_EXPORTED_FUNCTION } from '../../utils/plausible';
const getRelatedFunctionHref = (relatedFunctionShortName: string, glossaryPageInfo: GlossaryPageInfo[]) => {
const relatedFunction = glossaryPageInfo.filter((glossaryPageInfo) => {
@@ -202,7 +202,7 @@ const ExcelToPythonGlossaryPage = (props: {pageContent: PageContent, glossaryPag
})}
{codeSection.codeLines.length > 0 &&
{codeSection.codeLines.join('\n')}
@@ -225,7 +225,7 @@ const ExcelToPythonGlossaryPage = (props: {pageContent: PageContent, glossaryPag
Install Mito to start using Excel formulas in Python.
{[
"# Import the mitosheet Excel functions",
@@ -268,7 +268,7 @@ const ExcelToPythonGlossaryPage = (props: {pageContent: PageContent, glossaryPag
})}
{codeSections.codeLines.length > 0 &&
{codeSections.codeLines.join('\n')}
diff --git a/trymito.io/utils/plausible.tsx b/trymito.io/utils/plausible.tsx
index b5407fa93..c7e6d0d64 100644
--- a/trymito.io/utils/plausible.tsx
+++ b/trymito.io/utils/plausible.tsx
@@ -15,7 +15,9 @@ export const PLAUSIBLE_INSTALL_DOCS_CTA_LOCATION_EXCEL_TO_PYTHON_GLOSSARY_IN_CON
export const PLAUSIBLE_INSTALL_DOCS_CTA_LOCATION_BLOG = 'plausible-event-name=install_docs_cta_pressed+location_blog'
// The user copied the code from a code block that contains a Mito exported function, ie: SUM(df['A']) from the glossary page
-export const PLAUSIBLE_MITO_EXPORTED_FUNCTION_CODE_COPIED = 'plausible-event-name=mito_exported_function_code_copied'
+export const PLAUSIBLE_COPIED_CODE_MITO_EXPORTED_FUNCTION = 'plausible-event-name=copied_code_mito_exported_function'
+// The user copied some other code from a code block that does not contain a Mito exported function
+export const PLAUSIBLE_COPIED_CODE_NON_MITO_EXPORTED_FUNCTION = 'plausible-event-name=copied_code_non_mito_exported_function'
// The user clicked a book a demo CTA
export const PLAUSIBLE_BOOK_A_DEMO_CTA_PRESSED = 'plausible-event-name=book_a_demo_cta_pressed+location_title_card'
\ No newline at end of file