Hello All,
I would like to create unique id. Suppose i have question like
where do you live? Answer= NEPAL
How old are you? Answer= 30
from these two questions here, I would like to have unique id in UNIQUE ID field = NE30
NE from Nepal and 30 from age
Thank you in advance
Hi @Santosh_Bastola ,
you should create a calculate question, with a calculation that concatenates a substring of the country question with the age one :
concat(substring(${country},1,2),${age})
I am not sure it will be unique but it will create the string as wanted in your example.
2 Likes
Thank you. Its working now