Albert Labermair
- Total activity 226
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 101
Articles
Recent activity by Albert Labermair-
Create a button to execute a webhook in Power Automate (with createButton)
This article explains how to use the createButton function to create an interactive button that triggers a webhook in PowerAutomate. By clicking this button, a flow is triggered that transmits and ...
-
relation - Retrieve relation field value
Description The relation function returns the value of a relation flavor. The index parameter can be used to return a specific element. If omitted, the function always returns the first element. If...
-
segment - Splitting a string into segments
Description The segment function splits the string string into individual, separator-separated segments and returns the segment at the specified index. Syntax segment(string, separator[, index]) Ar...
-
Folder properties
In smenso, folder properties offer numerous options for customizing the structure, layout, and behavior of tasks within a folder. Here you’ll find an overview of all available fields and options in...
-
Filter in time evaluation and “My times”
In the Time analysis view and the My times area, you have the same versatile filtering options as in other smenso views. This lets you search and evaluate your time entries based on various criteri...
-
maxFolder - Determine the largest value in a folder
Description The maxFolder function returns the largest value of the provided function of all objects in a specific folder. This is particularly useful when performing calculations at the group leve...
-
set - create temporary variables or set their values
Description The set function is used within createButton to create temporary variables or assign values to them. These variables can be reused in subsequent actions within the button. This is parti...
-
sort - Sort a list of entries
Description The sort function is used to sort a list of entries. The entries in the list are separated by a specified string (separator). Optionally, the sort direction can be controlled via the di...
-
get - Retrieve the value of a variable previously defined with “set”
Description The get function is used within createButton to retrieve the value of a variable previously defined using set. This function is essential for processing stored intermediate values in su...
-
subString - Extract part of a string
Description The subString function returns the substring between the specified start and end positions of the input string string. The start parameter specifies the beginning of the substring, and ...