Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
arnolyuna
Contributor
Contributor

Help Adding Underscore At End of Number

Hi, I have a set of account numbers that I need to add an underscore to the end of, so 1234 to show as 1234_ I recall doing this a while ago but cannot remember how, I know it ended & "_" as .... but cannot remember? I've look online, but cannot find the solution? Any suggestions please?

Labels (1)
  • Other

1 Reply
QFabian
Specialist III
Specialist III

Hi @arnolyuna , you are in the right path, just use single quotes, here an example :

Data:

Load

AccountNumber,

AccountNumber & '_'  as AccountNumberWithUnderscore, //maybe is better to keep the original field and create a new one

others fields....

FROM YourSource;

 

QFabian