Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
prasadreddy
Contributor III
Contributor III

Merging two list boxes with fixed lenghth of charecters

Hi All,

Below are my two list boxes in my task, and i want merge these two list boxes as One, with fixed length of 10 charecters,

Ex: First Name : John, Count from 'J' , 11th charecter should be 'K'

Ex: First Name : Karthikeyanraja Count from 'K', 11th charecter should be 'L'

First NameLast Name

John

Praveen

Alexander

Karthikeyanraja

K

M

G

L

I want the result below

Result:

Full Name

John------K

Praveen---M

Alexander-G

KarthikeyaL

Can any one help me on this please....

Thanks in advance

1 Solution

Accepted Solutions
senpradip007
Specialist III
Specialist III

5 Replies
Not applicable

Please find the attached application.

prasadreddy
Contributor III
Contributor III
Author

Hi vankatreddy,

Please check my example once,

Including First name it should be 10 charecters, in 11th charecter it should be Last name

like below:

Full Name
John      K

KarthikeyL

Praveen   M

Between John & K, it has 6 blanks, so, 6 blanks and 'John' = 10 charecters

jonathandienst
Partner - Champion III
Partner - Champion III

Hi

This what you need:

Left([First Name] & '----------', 10) & Left([Last Name], 1)

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
senpradip007
Specialist III
Specialist III

Hi Prasad,

PFA.


prasadreddy
Contributor III
Contributor III
Author

Thank you very much Pradip