04-14-2022 06:24 AM
I want to utilize the functionality of mapper snap to prefix my value with a static string, then concatenate with other variables and again concatenate with a static string.
I’m able to do the concatenation part however I cannot prefix the string. Any suggestions please?
Thanking you in advance for your time.
Solved! Go to Solution.
04-14-2022 06:41 AM
If your column is of number type than yes, it won’t work. You’ll have to try something like this:
"00"+$ID.toString()+"00"
04-14-2022 06:32 AM
Hey @darshthakkar,
You can do the prefixing with concatenation. Ex.: "00"+$ID+"00"
Let me know if this is what you need.
04-14-2022 06:40 AM
I tried the above approach and somehow it didn’t work for me. I will try a second time and keep you posted…
04-14-2022 06:41 AM
If your column is of number type than yes, it won’t work. You’ll have to try something like this:
"00"+$ID.toString()+"00"
04-14-2022 06:46 AM
Thanks a TON @bojanvelevski for providing me the right direction. I did mess up with the " " while concatenating variables and yes one of them was a number indeed.
Remember, you suggested me to parseInt($ID) for sort previously? It’s working now so THANK YOU 😍 :smiling_face_with_three_hearts: