Expressions
[Table].GetCellValue(row_number,column_number)
FIRST CREATED ON 17 Feb 2025 I AUTHOR Emma Camacho When using Cell Settings in the Designer to format a Table in a Report you can use the Function GetCellValue to get the value of the cell to set a customized format. For example, to highlight the ...
CreateList(...)
FIRST CREATED ON 17 Feb 2025 I AUTHOR Emma Camacho When writing an Expression in Mail & Deploy where you need a list, use the CreateList function. For example, when including columns 1,3 and 4 in a Table Element CreateList(1,3,4) or including several ...
How to make use of Modules in Mail & Deploy?
FIRST CREATED ON 17 May 2023 I AUTHOR Emma Camacho You can also write your own Visual Basic .NET code in a module. A module is a set of Visual Basic .NET code that contains functions to be used from any expression within the repository. This allows ...
How to use the built-In expression DoesReportDocumentExist?
FIRST CREATED ON 19 May 2023 I AUTHOR Emma Camacho Does Report Document Exist DoesReportDocumentExist(<report_document_name>) The function returns True if a report document with the given name exists in the current context (e.g. if a report document ...
How to use constant values and dynamic values in data types?
FIRST CREATED ON 17 May 2023 I AUTHOR Emma Camacho Depending on the data-type of the constant value (see Constant Values) or dynamic value (see Dynamic Values), you can access certain properties of the value and/or manipulate it. Date-Time More ...
How to do Calculations in Mail & Deploy?
FIRST CREATED ON 1 May 2020 I AUTHOR Emma Camacho The previously mentioned constant values (see Constant Values) and dynamic values (see Dynamic Values) can not only be used on their own, but they can be used in calculations by using the following ...
What are Dynamic Values and how to use them in Mail & Deploy?
FIRST CREATED 17 May 2023 I AUTHOR Emma Camacho Expressions are dynamic values - values which are dynamically obtained by the expression at the time of its evaluation. Example: You want to add a text report element to a report and you want the text ...
What are Constant Values in Mail & Deploy and how to use them?
FIRST CREATED ON 17 May 2023 I AUTHOR Emma Camacho If you want to use a constant, non-calculated value in an expression, you can do this by using the following syntax, which depends on the data type of the constant you want to use. Text If you want ...
What are expressions in Mail & Deploy?
FIRST CREATED ON 17 May 2023 I AUTHOR Emma Camacho In Mail & Deploy, expressions can be used to supply values to certain functions; expressions can either return constant values (see Constant Values), dynamic values (see Dynamic Values) or values ...