DESCRIPTION:
Checks if the content of SourceValue is a number. If it is not, it is assigned the value indicated in Factor.
EXAMPLE:
Source value: "12.34567".
Factor: "Text".
Processed Value: "12.34567".
CONFIGURATION:
Value | Value2 | Relation | Relationship2 | Operation | Factor |
EsNumero | Text | ||||
CODE:
If IsNumeric(SourceValue) Then
ProcessValue = SourceValue
Else
ProcessedValue = Transformations.Factor
End If