We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Output is _x000d_

Sayeed1
7 - Meteor

Hi all,

 

My data has range of number like 1-10, 20-30, till 90-100. I want the same range in  output. However, the output in excel is 1-10_x000d_ , 20-30_x000d_  and so on.

 

Please help me how to get rid of _x000d_ 

 

Thank you so much,

Sayeed

3 REPLIES 3
Sayeed1
7 - Meteor

Please review the attachment.

CharlieS
17 - Castor
17 - Castor

One way to resolve this is to edit the string to only take the value to the left of the first "_" character. Here's an IF statement to achieve this in a Multi Field Formula tool:

 

IF Contains([_CurrentField_],"_") THEN Left([_CurrentField_],FindString([_CurrentField_],"_"))
ELSE [_CurrentField_] ENDIF

 

Check out the attached example to see this in action. 

 

Sayeed1
7 - Meteor

Thank you so much. It is the best solution.

Labels
Top Solution Authors