From a77e82388bbcf37a488ab682cc26c7f293ca7745 Mon Sep 17 00:00:00 2001 From: roleohibachi Date: Tue, 25 Jul 2023 20:49:26 -0600 Subject: [PATCH] TEXT() alternatives per #580 (#591) --- sandbox/grist/functions/text.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sandbox/grist/functions/text.py b/sandbox/grist/functions/text.py index ea483985..3d9a7c0d 100644 --- a/sandbox/grist/functions/text.py +++ b/sandbox/grist/functions/text.py @@ -657,8 +657,9 @@ def TASTEME(food): @unimplemented def TEXT(number, format_type): # pylint: disable=unused-argument """ - Converts a number into text according to a specified format. It is not yet implemented in - Grist. + Converts a number into text according to a specified format. It is not yet implemented in + Grist. You can use the similar Python functions str() to convert numbers into strings, and + optionally format() to specify the number format. """ raise NotImplementedError()