I have one TextField = COMPANY, and one TextField = DATE (customer can fill in)
I want to make one Text field to write : "The Z-Score, based on financial data as of " (DATE) "for" (COMPANY) "is"
Thank you
Solved! Go to Solution.
Views
Replies
Total Likes
I am using FormCalculator.
Views
Replies
Total Likes
I am using FormCalculator.
Views
Replies
Total Likes
Keep the below script on Calculate of the Third Textfield (Result)
Language - Java Script
this.rawValue = "The Z-Score, based on financial data as of "+DateTimeField1.rawValue+" for "+ TextField1.rawValue +" is";
Language - FormCalc
$ = Concat("The Z-Score, based on financial data as of ", DateTimeField1.rawValue , " for " , TextField1.rawValue, " is")
Replace DateTimeField1,TextField1 with ur own field name.
Thanks
Vjay
Views
Likes
Replies
Views
Likes
Replies