concatenation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2022 09:53 AM
I am trying to concatenate two string fields and nothing seems to be working. Anyone have any idea
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2022 09:55 AM
Hi Mick,
Could you share an example of what you have tried?
If you've made an error in any of the syntax, the community will be able to help you.
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2022 10:47 AM
Thank you so what its suppose take from 2 field and concatenate into the third field.
var grade = g_form.getValue('u_grade');
var step = g_form.getValue('u_step');
var grades = g_form.getValue('u_grade_step');
grades= ('u_grade', 'u_step');

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2022 11:01 AM
Hi Mick,
Use the below code
var grade = g_form.getValue('u_grade');
var step = g_form.getValue('u_step');
g_form.setDisplayValue('grades', grade+ ' ' + step);
Regards,
Deepankar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2022 11:10 AM
Thank you will try it .