LOAN1301.CollCode (Text field)
LOAN1301.Balance (Currency field)
LOAN1301.DirectDebt (Currency field)
What I want to do is if LOAN1301.CollCode is NOT a number, I want to return the LOAN1301.DirectDebt value with a label of "Direct:" in front of it. Other wise I want it to return the value in the balance field with no label.
I am trying to use the following formula:
If NumericText ({LOAN1301.CollCode}) then {LOAN1301.Balance}
else "Direct: " + {LOAN1301.DirectDebt}
The problem with this formula is that I get the message "A string is required here." on the LOAN1301.DirectDebt field. I know that I somehow need to convert the type of data, but I don't quite know how.
LOAN1301.Balance (Currency field)
LOAN1301.DirectDebt (Currency field)
What I want to do is if LOAN1301.CollCode is NOT a number, I want to return the LOAN1301.DirectDebt value with a label of "Direct:" in front of it. Other wise I want it to return the value in the balance field with no label.
I am trying to use the following formula:
If NumericText ({LOAN1301.CollCode}) then {LOAN1301.Balance}
else "Direct: " + {LOAN1301.DirectDebt}
The problem with this formula is that I get the message "A string is required here." on the LOAN1301.DirectDebt field. I know that I somehow need to convert the type of data, but I don't quite know how.