Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Load excel column into text object

Hi, in my script I have a loaded a spreadsheet with 5 columns.  I want to be able to create a text object that only pulls one of those columns.  I've tried an if statement, only statement and nothing is working.  Help?

1 Solution

Accepted Solutions
maxgro
MVP
MVP

maybe

=concat(oneofthecolumn & chr(10))

View solution in original post

7 Replies
giakoum
Partner - Master II
Partner - Master II

=concat(yourColumn, ',')

maxgro
MVP
MVP

maybe

=concat(oneofthecolumn & chr(10))

Anonymous
Not applicable
Author

Thank you.  And if I wanted to show the values of 2 columns???

Column 1     Column 2

Value 1          Value 2

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Create two text objects and align them in such a way that they appear as one.

Peter

awhitfield
Partner - Champion
Partner - Champion

Using something other tan a text object would be best

Andy

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Andrew is right.

For example, you can give a Table Box the appearance of a text object by giving all cell borders the same color as the background. Nobody will notice that your are playing tricks

Peter

Anonymous
Not applicable
Author

Thank you all.