Skip to main content
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.