Albert Labermair
- Total activity 210
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 102
Articles
Recent activity by Albert Labermair-
shortenGUID - removes all hyphens from a specified GUID
Description The shortenGUID function removes all hyphens from a specified GUID (Globally Unique Identifier) and returns the result as a string. Syntax shortenGUID(string) Arguments Argument Desc...
-
year - Output the year of a date
Description The function year extracts the year from a given date and returns it. It is useful for analyzing date values or working with other time-related data. Syntax year(date) Arguments Argu...
-
abs - Calculate absolute value
Description The abs function returns the absolute value of a number. The absolute value of a number is the numerical value without its sign. Syntax abs(number) Arguments Argument Description ...
-
trim - Remove spaces at the beginning and end
Description The trim function returns the provided string after removing all whitespace from the beginning and end. Whitespace includes: Regular spaces Tabs Line breaks or similar leading characte...
-
Create an interactive button (createButton)
Description The createButton function creates an interactive button that executes the specified action when clicked. The button may not be available in all views. Syntax createButton(state, title, ...
-
What is the Gantt Chart?
A Gantt chart is an essential tool in project management and is often used in various software solutions for project planning and monitoring. This chart provides a detailed overview of tasks and th...
-
workflowStatus - Output GUID of a workflow status
Description The workflowStatus function returns the GUID (unique identifier) of the current workflow status of a task or project. Unlike many other functions, workflowStatus does not require any ar...
-
OpenURL - Open a URL
Description The OpenURL function opens the specified URL in a new or current browser tab/window. However, it must be defined within a button (createButton) in order to work correctly. Syntax OpenUR...
-
date - date conversion
Description The function date returns the value of the given parameter as a date, if possible. It is useful for converting strings that contain date information into a date format that can be proce...
-
asNumber - Display value as a number
Description The asNumber function returns the value of the parameter as a number, rounding the value to two decimal places if possible. Syntax asNumber(number) Arguments Argument Description ...