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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Maximum character in a field

Hi all,

i have a case in here,

i have 2 different fields (AccountNumber and PinNumber) loaded from SQL Server to a qlikview,

AccountNumber (10 characters) and PinNumber (3 characters)

the problem is when i join both these fields as

Load

AccountNumber + pinNumber as ContractNumber

;

the result shows a new field ContractNumber with only 10 characters,

is there any limitation for characters in QlikView?

how i change the format or limitation?

Thanks

Labels (1)
1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hi,

If all values are numeric, this is the expected behavior, because the "+" sign means "sum" instead of the one you want to use "&" (concatenate).

So this should work:

Load

AccountNumber & pinNumber as ContractNumber

;

Hope that helps.

Miguel

View solution in original post

2 Replies
Miguel_Angel_Baeyens

Hi,

If all values are numeric, this is the expected behavior, because the "+" sign means "sum" instead of the one you want to use "&" (concatenate).

So this should work:

Load

AccountNumber & pinNumber as ContractNumber

;

Hope that helps.

Miguel

Not applicable
Author

Thanks Miguel,

the result seem correct

Miguel Angel Baeyens wrote:

Hi,

If all values are numeric, this is the expected behavior, because the "+" sign means "sum" instead of the one you want to use "&" (concatenate).

So this should work:

Load
AccountNumber & pinNumber as ContractNumber
;

Hope that helps.

Miguel