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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
vidyasagar159
Creator II
Creator II

Data Formatting Issue

Hi,

Can someone please help me the value alignment from the below screenshot. I want to start the value "457" from the left.

Options I tried in ScriptEditor:

TRIM

IF Condition

Replace

Formatting Issue.PNG

Thanks,

-Vidya

1 Solution

Accepted Solutions
giovanneb
Creator II
Creator II

Hi, try this

text(PLANTYPE) as PLANTYPE


Best reguards

View solution in original post

2 Replies
giovanneb
Creator II
Creator II

Hi, try this

text(PLANTYPE) as PLANTYPE


Best reguards

felipedl
Partner - Specialist III
Partner - Specialist III

Hi,

Use the text() statement to transform your number into text.

Do something like:

Load

     text(PLANTYPE) as PLANTYPE

From [Whatever];

Felipe.