By selecting Adopt and Sign, I agree that the signature and initials will be the electronic representation of my signature and initials for all purposes when I (or my agent) use them on documents, including legally binding contracts just the same as pen-and-paper signature or initial.
By selecting Adopt and Sign, I agree that the signature and initials will be the electronic representation of my signature and initials for all purposes when I (or my agent) use them on documents, including legally binding contracts just the same as pen-and-paper signature or initial.
Before proceeding with the deletion of the record from the object, it's crucial to review its dependencies across various components.
Please take a moment to examine all the dependent components where this record is being utilized.
Table of dependent components where the record is being utilized.
Object
Field
Row ID
This record is currently utilized in custom components, including views, conditions, and navigations. Deleting it might lead to misbehavior in associated functionalities. Please carefully review the potential impact before proceeding.
Are you sure to rename?
Changing the table name of an object is not advised. This will not change syntax referencing this object in formulas found in any expression.
GENERATE_CHILD_RECORDS(table, record ID, prompt, number of records, enhance prompt) Generates child records based on the input prompt and table. The number of records and optimise prompt is optional.
GENERATE_CHILD_RECORDS("superheros", "72570e47-2dc6-477d-97e7-c7b410ddc487" ,"Add details for 3 superheroes from Marvel", 3, True)Returns: List of record IDs
GENERATE_IMAGE()
Returns a generated Image based on the input prompt
GENERATE_IMAGE("Cute Dog playing football ","512x512",1)Returns: Image
GENERATE_RECORDS()
GENERATE_RECORDS(table, prompt, number of records, enhance prompt) Generates records based on the input prompt and table. The number of records and optimise prompt is optional.
GENERATE_RECORDS("superheros", "Add details for 3 superheroes from Marvel", 3, True)Returns: List of record IDs
GENERATE_SIGNED_URL()
GENERATE_SIGNED_URL(url, [expiration=3600]) Returns a signed URL from GCS.
GENERATE_SIGNED_URL("bucket-name/example.png")Returns: signed URL
GENERATE_TEXT()
GENERATE_TEXT(prompt, context, datasource) Returns a generated text based on the input prompt. Pass a datastore path to be used for grounding.
GENERATE_TEXT("Give me a name for a blog website")Returns: Blogger's Home
GENERATE_TEXT("Give two names for a tech product, list them in numbers")Returns: 1. AppSheet 2. Bubble
GENERATE_TEXT_WITH_IMAGE()
Returns a generated text with an image prompt and text prompt. Pass a datastore path to be used for grounding.
GENERATE_TEXT_WITH_IMAGE("image.jpg","Describe the image")Returns: Text
GET()
Returns a value from a dictionary or a list
GET([1,7,8],0)Returns: 1
HAS_PERMISSION()
Returns a YesNo expression
HAS_PERMISSION("send_mail")Returns: Yes
HAS_PERMISSION("cases.create")Returns: No
HAS_PERMISSION("cases.case_number.read")Returns: No
HOUR()
Returns the hour
HOUR("2020-01-01 12:00:00")Returns: 12
HOUR("2020-01-01 00:00:00")Returns: 0
IF()
Returns one value if a condition is true, and another value if it is false
IF(True, "Yes", "No")Returns: Yes
IF(False, "Yes", "No")Returns: No
IFS()
Returns one value if a condition is true, and another value if it is false for multiple conditions
IFS(True, "Yes", False, "No")Returns: Yes
IFS(FALSE, "Yes", TRUE, "No")Returns: No
IMAGE()
IMAGE(url). Returns a signed URL from GCS.
IMAGE("bucket-name/example.png")Returns: signed URL
IN()
Returns a YesNo expression
IN("a", ["a", "b", "c"])Returns: Yes
IN("d", ["a", "b", "c"])Returns: No
INDEX()
Returns the value at a specific position in a list. Indexes start at 1.
INDEX(["a", "b", "c"], 1)Returns: a
INDEX(["a", "b", "c"], 2)Returns: b
INDEX(["a", "b", "c"], 3)Returns: c
INDEX(["a", "b", "c"], 4)Returns:
INT()
Converts a value to an integer
INT("3")Returns: 3
INT(2.718)Returns: 2
ISBLANK()
Returns a YesNo expression
ISBLANK("")Returns: Yes
ISBLANK("a")Returns: No
ISDATE()
Returns a YesNo expression
ISDATE("2020-01-01")Returns: Yes
ISDATE("a")Returns: No
ISNOTBLANK()
Returns a YesNo expression
ISNOTBLANK("")Returns: No
ISNOTBLANK("a")Returns: Yes
ISNULL()
Returns a YesNo expression, if the value is null or None
ISNULL(1)Returns: No
ISNULL(0)Returns: No
ISNULL(None)Returns: Yes
ISNUMBER()
Returns a YesNo expression
ISNUMBER(1)Returns: Yes
ISNUMBER("a")Returns: No
KG_SEARCH()
KG_SEARCH(query, [limit=10]). Returns a list of entities from Google's Knowledge Graph.
LATLNG_TO_ADDRESS(latitude, longitude). Returns an address from a latitude and longitude.
LATLNG_TO_ADDRESS(40.714224, -73.961452)Returns: 277 Bedford Ave, Brooklyn, NY 11211, USA
LEFT()
Returns the leftmost characters in a text string
LEFT("abc", 1)Returns: a
LEFT("abc", 2)Returns: ab
LEFT("abc", 3)Returns: abc
LEFT("abc", 4)Returns: abc
LEN()
The string length
LEN("abc")Returns: 3
LEN("a")Returns: 1
LEN("")Returns: 0
LIST()
Returns a list of values
LIST("a", "b", "c")Returns: ['a', 'b', 'c']
LIST(1, 2, 3)Returns: [1, 2, 3]
LOOKUP()
LOOKUP(value, object, field, return-column). Returns a single value from a table if found.
LOOKUP("admin@example.com", "users", "email", "name")Returns: List
LOWER()
Lowercase a string
LOWER("ABC")Returns: abc
LOWER("aBc")Returns: abc
MARKDOWN_TO_HTML()
Converts Markdown to HTML
MARKDOWN_TO_HTML("# Hello")Returns:
Hello
MARKDOWN_TO_HTML("## Hello")Returns:
Hello
MAX()
Returns the largest value in a list of numbers
MAX([1, 2, 3])Returns: 3
MAX([3, 2, 1])Returns: 3
MAX([3.14, 2.71])Returns: 3.14
MAXROW()
Returns the largest row number in a table
MAXROW("table", "field")Returns: 3
MID(arg, start, length)
Returns a specific number of characters from a text string starting at the position you specify.
MID("abc", 1, 1)Returns: a
MID("abc", 1, 2)Returns: ab
MID("abc", 1, 3)Returns: abc
MID("abc", 1, 4)Returns: abc
MIN()
Returns the smallest value in a list of numbers
MIN([1, 2, 3])Returns: 1
MIN([3, 2, 1])Returns: 1
MIN([3.14, 2.71])Returns: 2.71
MINROW()
Returns the smallest row number in a table
MINROW("table", "field")Returns: 1
MINUTE()
Returns the minute
MINUTE("2020-01-01 12:34:56")Returns: 34
MONTH()
Returns the month
MONTH("2020-01-01 12:34:56")Returns: 1
NLP_SENTIMENT()
NLP_SENTIMENT(text). Returns a sentiment score from -1 to 1.
NLP_SENTIMENT("I love this product")Returns: 0.9
NLP_SENTIMENT("I hate this product")Returns: -0.9
NOT()
Returns a YesNo expression
NOT(True)Returns: No
NOT(No)Returns: Yes
NOW(timezone='UTC')
The datetime in %Y-%m-%d %H:%M:%S format. The timezone is optional with a default of UTC. Complete list of timezones can be found at https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
NOW()Returns: 2020-12-31 12:34:56
NOW("America/Denver")Returns: 2020-12-31 07:34:56
OR()
Returns a YesNo expression
OR(True, False)Returns: Yes
OR(Yes, No)Returns: Yes
OR(No, No)Returns: No
POWER()
Returns the result of a number raised to a power
POWER(2, 3)Returns: 8
POWER(3, 2)Returns: 9
POWER(3.14, 2)Returns: 9.8596
PREDICT()
PREDICT(model, input). Returns a prediction from a model.
Returns a number rounded to a specified number of decimal places
ROUND(3.14159, 2)Returns: 3.14
ROUND(3.14159, 3)Returns: 3.142
ROUND(3.14159, 4)Returns: 3.1416
SECOND()
Returns the second
SECOND("2020-01-01 12:34:56")Returns: 56
SELECT()
Returns a list of records from a database table.
- columns: (Optional) A list or comma-separated string of column names to retrieve. Defaults to "*".
- where_column: (Optional) The column name to filter by.
- where_value: (Optional) The value to match for where_column.
- flatten: (Optional) If True, returns a list of values from the first column only.
- dictionary: (Optional) If True, returns each record as a dictionary. Cannot be used with flatten.
- filters: (Optional) A list of tuples for multiple filters, e.g., filters=[("column1", 10), ("column2", 20)].
- order_by: (Optional) A string (column name) or a list of tuples for multiple sort columns, e.g., order_by=[("column1", "ASC"), ("column2", "DESC")].
STATIC_MAP(latitude, longitude, zoom, width, height, map_type). Returns a static map image from Google Maps. Maps Documentation. This returns a GCS blob URI. You can use the GENERATE_SIGNED_URL() function to display the image. map_type can be one of the following: roadmap, satellite, terrain, hybrid.
STATIC_MAP(40.714224, -73.961452, 12, 400, 400)Returns: signed URL
STATIC_MAP(ADDRESS_TO_LATLNG("1616 Federal Blvd, Denver, CO 80204, USA"), None, 12, 400, 400)Returns: File
STREET_VIEW()
STREET_VIEW(latitude, longitude, heading, pitch, fov, width, height). Returns a street view image from Google Maps. Street View Documentation. This returns a GCS blob URI. You can use the GENERATE_SIGNED_URL() function to display the image.
STREET_VIEW(40.714224, -73.961452, 90, 0, 90, 400, 400)Returns: signed URL
SUBSTITUTE()
Returns a text string with all occurrences of a substring replaced with another substring
SUMMARIZE_DOCUMENT(url) Returns a summarized text of the input document. Supports PDF files.
SUMMARIZE_DOCUMENT(url = pdf_url)Returns: Summarized text of the pdf
TEXT()
Returns a text string representation of a value
TEXT(123)Returns: 123
TEXT(123.45)Returns: 123.45
TEXT_TO_SPEECH()
TEXT_TO_SPEECH(text). Returns a GCS blob URI from a text string. You can use the GENERATE_SIGNED_URL() function to play the audio.
TEXT_TO_SPEECH("Hello World")Returns: signed URL
TEXT_TO_SPEECH("Hello World", "FEMALE")Returns: signed URL
TEXT_TO_SPEECH("Hello World", "MALE")Returns: signed URL
TEXT_TO_SPEECH("Hello World", "NEUTRAL")Returns: signed URL
TIME()
Returns the time portion of a datetime
TIME("2020-01-01 12:34:56")Returns: 12:34:56
TIME(NOW())Returns: 12:34:56
TIMENOW(timezone='UTC')
The time in %H:%M:%S format. Similar to TIME(NOW()). The timezone is optional with a default of UTC. Complete list of timezones can be found at https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
TIMENOW()Returns: 12:34:56
TIMENOW("America/Denver")Returns: 07:34:56
TITLE()
Returns a text string in title case
TITLE("hello world")Returns: Hello World
TODAY(timezone='UTC')
The date in %Y-%m-%d format. The timezone is optional with a default of UTC. Complete list of timezones can be found at https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
TRANSLATE_DOCUMENT("URI", "source_language", "target_language"). Returns a translated document from a GCS URI.
TRANSLATE_DOCUMENT("gs://bucket-name/file-name", "en", "es")Returns: GCS URI
TRANSLATE_DOCUMENT_BATCH()
TRANSLATE_DOCUMENT_BATCH("URI", "source_language", "target_language"). Returns a translated document from a GCS URI.
TRANSLATE_DOCUMENT_BATCH("gs://bucket-name/file-name", "en", "es")Returns: GCS URI
TRANSLATE_TEXT()
TRANSLATE_TEXT(text, [source_language='auto', target_language='en']). Returns a translated string. Similar to the GOOGLETRANSLATE() function in Google Sheets.
TRANSLATE_TEXT("Hola Amigo")Returns: Hi friend
TRANSLATE_TEXT("Hola Amigo", "es", "en")Returns: Hi friend
TRIM()
Returns a text string with whitespace removed from the start and end
TRIM(" Hello World ")Returns: Hello World
TRIM("Hello World")Returns: Hello World
UNIQUE()
Returns a list of unique values from a list
UNIQUE([1, 2, 3, 1, 2, 3])Returns: [1, 2, 3]
UPPER()
Uppercase a string
UPPER("Hello World")Returns: HELLO WORLD
URL_TO_PDF()
URL_TO_PDF(url). Returns a PDF file from a URL.
URL_TO_PDF("https://example.com")Returns: URI
URL_TO_PDF("https://example.com","vendors")Returns: URI
USEREMAIL()
Returns the current user's email
USEREMAIL()Returns: email
USERID()
Returns the current user's ID
USERID()Returns: UUID
USERLOCALE()
The active locale e.g. en, de, es, zh
USERLOCALE()Returns: en, de, es, fr, or zh
USERNAME()
Returns the current user's fullname
USERNAME()Returns: Full Name
USERROLE()
Returns the current user's role ID
USERROLE()Returns: UUID
UTCNOW()
The datetime for UTC timezone in %Y-%m-%d %H:%M:%S format
UTCNOW()Returns: 2020-01-01 12:34:56
WEEKDAY()
Returns the day of the week for a date
WEEKDAY("2020-01-01")Returns: 1
YEAR()
Returns the year
YEAR("2020-01-01")Returns: 2020
REFS_TO_USERS(id,type)
Returns a list of user IDs referenced in a document
GENERATE_KEYWORDS(user_id,website,start_date,end_date)Returns: Any
GENERATE_PATH_TIMELINE()
Generate a timeline for a path and related courses.
GENERATE_PATH_TIMELINE(path_id,user_id)Returns: Text
GENERATE_SEO_SUGGESTIONS()
Returns:
GENERATE_SLIDES_NEW()
Returns:
GET_BLOGS()
None
Returns:
GET_BLOGS_STR()
None
Returns:
GET_COURSE_DETAIL()
this is the course details of a function that Runs a query to join courses, modules, module items and user module items to to show course/module information applicable to the current user.
GET_COURSE_DETAIL(course_id)Returns: List
GET_COURSE_DETAILS_101()
Returns:
GET_COURSE_HTML()
GET_COURSE_HTML(course_id,user_id)Returns: None
GET_KEYWORD_RANKING()
Returns:
GET_OAUTH_TOKEN()
GET_OUTH_TOKEN('google_apis',USERID())Returns: The Decrypted Token
GET_PAGES()
Returns:
GET_PERFORMANCE_SCORE()
this function takes the url and returns the performance sore of the website using pagespeed insight API
Returns:
GET_QUESTIONS()
None
GET_QUESTIONS(quiz_id)Returns: Any
GET_QUIZ_HTML()
Returns:
GET_RANDOM_KEYWORD()
Returns:
GET_URL_SUBTYPE()
None
Returns:
GET_URL_TYPE()
Returns:
GET_USER_MODULE_ITEMS()
Returns:
KEYWORD_DETAILS()
This function returns the details for each keywords in the url
KEYWORD_DETAILS(user_id, url, start_date, end_date)Returns: Any
KEYWORD_RANKINGS()
This function generates keyword ranking
KEYWORD_RANKINGS(user_id, url, start_date, end_date)Returns: Any
NOTAFREEMAIL()
Confirm email address is valid and is not from a free email domain (e.g. gmail.com, yahoo.com etc)
NOTAFREEMAIL( 'email@yahoo.com')Returns: False
NOTAFREEMAIL( 'ted@bluevector.ai')Returns: True
RENDER_DATE()
None
RENDER_DATE(q)Returns: Any
RENDER_ENUM()
None
RENDER_ENUM(q)Returns: Any
RENDER_ENUM_BUTTONS()
None
RENDER_ENUM_BUTTONS(q, options, current_answer)Returns: Any
RENDER_ENUM_DROPDOWN()
None
RENDER_ENUM_DROPDOWN(q, options, current_answer)Returns: Any
RENDER_ENUM_STACKED()
None
RENDER_ENUM_STACKED(q, options, current_answer)Returns: Any
RENDER_ERROR()
None
RENDER_ERROR(msg)Returns: Any
RENDER_FIELD_FOR_QUESTION()
None
RENDER_FIELD_FOR_QUESTION(q)Returns: Any
RENDER_HEADER()
None
RENDER_HEADER(questions)Returns: Any
RENDER_LONG_TEXT()
None
RENDER_LONG_TEXT(q)Returns: Any
RENDER_NO_QUESTION()
None
RENDER_NO_QUESTION()Returns: Any
RENDER_QUIZ()
None
RENDER_QUIZ(quiz_id)Returns: Any
RENDER_TEXT()
None
RENDER_TEXT(q)Returns: Any
RESUBMIT_SITEMAP_OR_URL()
Returns:
RUN_SEO_REPORT()
RUN_SEO_REPORT(user_id,report_id,start_date,end_date,search_engine_id)Returns: Any
This table contains a list of expressions and their descriptions.
Name
Description
Action
Returns: Date
DATE()
Returns a date from a string
DATE("2020-01-01")Returns: 2020-01-01
DATE("2020-01-01 00:00:00")Returns: 2020-01-01
DATEADD()
Adds a number of days
DATEADD("2020-01-01", 1)Returns: 2020-01-02
DATEADD("2020-01-01", -1)Returns: 2019-12-31
EOMONTH()
Returns the last day of the month
EOMONTH("2020-01-01")Returns: 2020-01-31
EOMONTH("2020-12-31")Returns: 2020-12-31
EOWEEK()
Returns the last day of the week
EOWEEK("2020-01-01")Returns: 2020-01-05
EOWEEK("2020-12-31")Returns: 2021-01-02
TODAY(timezone='UTC')
The date in %Y-%m-%d format. The timezone is optional with a default of UTC. Complete list of timezones can be found at https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
This table contains a list of expressions and their descriptions.
Name
Description
Action
Returns: DateTime
NOW(timezone='UTC')
The datetime in %Y-%m-%d %H:%M:%S format. The timezone is optional with a default of UTC. Complete list of timezones can be found at https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
NOW()Returns: 2020-12-31 12:34:56
NOW("America/Denver")Returns: 2020-12-31 07:34:56
UTCNOW()
The datetime for UTC timezone in %Y-%m-%d %H:%M:%S format
This table contains a list of expressions and their descriptions.
Name
Description
Action
Returns: File
STATIC_MAP()
STATIC_MAP(latitude, longitude, zoom, width, height, map_type). Returns a static map image from Google Maps. Maps Documentation. This returns a GCS blob URI. You can use the GENERATE_SIGNED_URL() function to display the image. map_type can be one of the following: roadmap, satellite, terrain, hybrid.
STATIC_MAP(40.714224, -73.961452, 12, 400, 400)Returns: signed URL
STATIC_MAP(ADDRESS_TO_LATLNG("1616 Federal Blvd, Denver, CO 80204, USA"), None, 12, 400, 400)Returns: File
STREET_VIEW()
STREET_VIEW(latitude, longitude, heading, pitch, fov, width, height). Returns a street view image from Google Maps. Street View Documentation. This returns a GCS blob URI. You can use the GENERATE_SIGNED_URL() function to display the image.
STREET_VIEW(40.714224, -73.961452, 90, 0, 90, 400, 400)Returns: signed URL
TEXT_TO_SPEECH()
TEXT_TO_SPEECH(text). Returns a GCS blob URI from a text string. You can use the GENERATE_SIGNED_URL() function to play the audio.
TEXT_TO_SPEECH("Hello World")Returns: signed URL
TEXT_TO_SPEECH("Hello World", "FEMALE")Returns: signed URL
TEXT_TO_SPEECH("Hello World", "MALE")Returns: signed URL
TEXT_TO_SPEECH("Hello World", "NEUTRAL")Returns: signed URL
URL_TO_PDF()
URL_TO_PDF(url). Returns a PDF file from a URL.
URL_TO_PDF("https://example.com")Returns: URI
URL_TO_PDF("https://example.com","vendors")Returns: URI
GENERATE_CHILD_RECORDS(table, record ID, prompt, number of records, enhance prompt) Generates child records based on the input prompt and table. The number of records and optimise prompt is optional.
GENERATE_CHILD_RECORDS("superheros", "72570e47-2dc6-477d-97e7-c7b410ddc487" ,"Add details for 3 superheroes from Marvel", 3, True)Returns: List of record IDs
GENERATE_RECORDS()
GENERATE_RECORDS(table, prompt, number of records, enhance prompt) Generates records based on the input prompt and table. The number of records and optimise prompt is optional.
GENERATE_RECORDS("superheros", "Add details for 3 superheroes from Marvel", 3, True)Returns: List of record IDs
LIST()
Returns a list of values
LIST("a", "b", "c")Returns: ['a', 'b', 'c']
LIST(1, 2, 3)Returns: [1, 2, 3]
RE_FINDALL()
Returns a list of all matches of a regular expression
Returns a list of records from a database table.
- columns: (Optional) A list or comma-separated string of column names to retrieve. Defaults to "*".
- where_column: (Optional) The column name to filter by.
- where_value: (Optional) The value to match for where_column.
- flatten: (Optional) If True, returns a list of values from the first column only.
- dictionary: (Optional) If True, returns each record as a dictionary. Cannot be used with flatten.
- filters: (Optional) A list of tuples for multiple filters, e.g., filters=[("column1", 10), ("column2", 20)].
- order_by: (Optional) A string (column name) or a list of tuples for multiple sort columns, e.g., order_by=[("column1", "ASC"), ("column2", "DESC")].
this is the course details of a function that Runs a query to join courses, modules, module items and user module items to to show course/module information applicable to the current user.
SUMMARIZE_DOCUMENT(url) Returns a summarized text of the input document. Supports PDF files.
SUMMARIZE_DOCUMENT(url = pdf_url)Returns: Summarized text of the pdf
TEXT()
Returns a text string representation of a value
TEXT(123)Returns: 123
TEXT(123.45)Returns: 123.45
TITLE()
Returns a text string in title case
TITLE("hello world")Returns: Hello World
TRANSLATE_DOCUMENT()
TRANSLATE_DOCUMENT("URI", "source_language", "target_language"). Returns a translated document from a GCS URI.
TRANSLATE_DOCUMENT("gs://bucket-name/file-name", "en", "es")Returns: GCS URI
TRANSLATE_DOCUMENT_BATCH()
TRANSLATE_DOCUMENT_BATCH("URI", "source_language", "target_language"). Returns a translated document from a GCS URI.
TRANSLATE_DOCUMENT_BATCH("gs://bucket-name/file-name", "en", "es")Returns: GCS URI
TRANSLATE_TEXT()
TRANSLATE_TEXT(text, [source_language='auto', target_language='en']). Returns a translated string. Similar to the GOOGLETRANSLATE() function in Google Sheets.
TRANSLATE_TEXT("Hola Amigo")Returns: Hi friend
TRANSLATE_TEXT("Hola Amigo", "es", "en")Returns: Hi friend
TRIM()
Returns a text string with whitespace removed from the start and end
TRIM(" Hello World ")Returns: Hello World
TRIM("Hello World")Returns: Hello World
UPPER()
Uppercase a string
UPPER("Hello World")Returns: HELLO WORLD
USERLOCALE()
The active locale e.g. en, de, es, zh
USERLOCALE()Returns: en, de, es, fr, or zh
USERNAME()
Returns the current user's fullname
USERNAME()Returns: Full Name
GENERATE_PATH_TIMELINE()
Generate a timeline for a path and related courses.
GENERATE_PATH_TIMELINE(path_id,user_id)Returns: Text
GET_OAUTH_TOKEN()
GET_OUTH_TOKEN('google_apis',USERID())Returns: The Decrypted Token
This table contains a list of expressions and their descriptions.
Name
Description
Action
Returns: Time
TIME()
Returns the time portion of a datetime
TIME("2020-01-01 12:34:56")Returns: 12:34:56
TIME(NOW())Returns: 12:34:56
TIMENOW(timezone='UTC')
The time in %H:%M:%S format. Similar to TIME(NOW()). The timezone is optional with a default of UTC. Complete list of timezones can be found at https://en.wikipedia.org/wiki/List_of_tz_database_time_zones