I have three attribute fields and I am trying to populate them into one field in the final data model. The goal is to clean up the export table from 3 columns to one when I am collecting the same information for all three entries. However, they are being captured differently in the survey. One is an integer value input and the other 2 are calculated fields.
I'd like to get : target_value_numeric, calculated_target_value, calculated_unemployed_target_value to one field say final_target_value
What is the best process to do so?
Solved! Go to Solution.
A few things that may help:
concat(${textQuestion}, " ", ${calculateQuestion}, " ", ${integerQuestion})
coalesce(${question1},${question2})
coalesce(${question1},coalesce($question2},${question3}))
A few things that may help:
concat(${textQuestion}, " ", ${calculateQuestion}, " ", ${integerQuestion})
coalesce(${question1},${question2})
coalesce(${question1},coalesce($question2},${question3}))
@IsmaelChivite the coalesce function worked perfectly! Thank you for the tip, I greatly appreciate it!