Hi @geraldeder1,
Our plugin is not exactly an Excel emulator, however, some operations are included in the plugin, but in the case of the operations that are not included, it is possible to implement an alternative with javascript.
The existent operations:
IF(condition, result when the condition is true, result when the condition is false)
for example:
IF(fieldname1>10, fieldname2+fieldname3,fieldname2*fieldname3)
MIN(value A, value B, value C)
return the minimum of the values passed as parameter, you can use as many parameters for comparing as needed.
for example:
MIN(3,54,1) = 1
MAX(value A, value B, value C)
return the maximum of the values passed as parameters, you can use as many parameters for comparing as needed.
for example:
MAX(3,54,1) = 54
About the other two functions in our plugin if you are using a numeric field, and it is empty, its value would be considered as zero. For example, if the fieldname1 is a number field, you can check it as follows:
IF(fieldname1, 'It has a value', 'It is empty or zero')
but if the field is textual, you can use a regular expression:
IF( !/^\s*$/.test(fieldname1), 'It has a value', 'It is empty')
Best regards.