From c3f9c92ee397dc1b4c1de23dc5f56c768b0c7b98 Mon Sep 17 00:00:00 2001 From: Shijith Karumathil Date: Thu, 9 Oct 2025 16:43:09 +0530 Subject: [PATCH 1/2] refactor: :recycle: Update Google Sheets docs for date format. Clarify that dates must be in DD/MM/YYYY format. --- .../03. Flows/2. Flow Actions/12. Link Google Sheets.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/4. Product Features/03. Flows/2. Flow Actions/12. Link Google Sheets.md b/docs/4. Product Features/03. Flows/2. Flow Actions/12. Link Google Sheets.md index 966020a1e9..789305a1c9 100644 --- a/docs/4. Product Features/03. Flows/2. Flow Actions/12. Link Google Sheets.md +++ b/docs/4. Product Features/03. Flows/2. Flow Actions/12. Link Google Sheets.md @@ -59,7 +59,9 @@ ___ Screenshot 2024-02-29 at 1 47 48 PM -_As per above example, the sheet `Daily Activity` is used to read the content from, and the variable `@calendar.current_date` D/MM/YYYY being passed from Glific to the Google sheet is being used as the search key to identify the relevant row to send the content from_ +_As per above example, the sheet `Daily Activity` is used to read the content from, and the variable `@calendar.current_date` DD/MM/YYYY being passed from Glific to the Google sheet is being used as the search key to identify the relevant row to send the content from_ + +**Note**: It is important to note that dates in the sheet should be in the format `DD/MM/YYYY`. Any other format will not work as expected. These all are the below calendar functions that can be used : `@calendar.current_date`,`@calendar.yesterday`,`@calendar.tomorrow`,`@calendar.current_day`,`@calendar.current_month`, From d1eeb6501f8f33c4f783384342b772e4f7b7b501 Mon Sep 17 00:00:00 2001 From: Shijith Karumathil Date: Thu, 9 Oct 2025 22:15:41 +0530 Subject: [PATCH 2/2] refactor: :recycle: Update Google Sheets date format documentation Add instructions for setting DD/MM/YYYY format via locale or custom formatting options in Google Sheets. --- .../03. Flows/2. Flow Actions/12. Link Google Sheets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/4. Product Features/03. Flows/2. Flow Actions/12. Link Google Sheets.md b/docs/4. Product Features/03. Flows/2. Flow Actions/12. Link Google Sheets.md index 789305a1c9..532e3ef34e 100644 --- a/docs/4. Product Features/03. Flows/2. Flow Actions/12. Link Google Sheets.md +++ b/docs/4. Product Features/03. Flows/2. Flow Actions/12. Link Google Sheets.md @@ -61,7 +61,7 @@ ___ _As per above example, the sheet `Daily Activity` is used to read the content from, and the variable `@calendar.current_date` DD/MM/YYYY being passed from Glific to the Google sheet is being used as the search key to identify the relevant row to send the content from_ -**Note**: It is important to note that dates in the sheet should be in the format `DD/MM/YYYY`. Any other format will not work as expected. +**Note**: It is important to note that dates in the sheet should be in the format `DD/MM/YYYY`. Any other format will not work as expected. You could either set the Locale in the Google sheet to India or set the format of the column to `DD/MM/YYYY` here `Format -> Number -> Custom Date and Time` These all are the below calendar functions that can be used : `@calendar.current_date`,`@calendar.yesterday`,`@calendar.tomorrow`,`@calendar.current_day`,`@calendar.current_month`,