Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Peony
Creator III
Creator III

Field values joined suddenly after loding script

Hi All

I have a table with numbers like this

LOAD * INLINE [
F1
9966
00009966
];

When I executed the script, as the result I have only one row - 9966. But I still need both values. What can I do, to keep them both at the result?

Labels (1)
1 Solution

Accepted Solutions
anushree1
Specialist II
Specialist II

Please try the below script:

Load Text(F1) as F1;
LOAD * INLINE [
F1
9966
00009966
];

View solution in original post

8 Replies
Vengatesh
Partner - Creator
Partner - Creator

Try like this

LOAD Text(F1) as F1 INLINE

[

F1

9966

00009966 ];

You Know What To Do.
Vegar
MVP
MVP

You still got two rows, but with identical values. Try to calculate count(F1), it  should be equal to 2.

Try this to fix your issue:

LOAD text(F1) as F1 INLINE [
F1
9966
00009966
];

Peony
Creator III
Creator III
Author

The same reuslt, unfortunatly

Peony
Creator III
Creator III
Author

Yes, I still have 2 rows, but they both like '9966'. Even after text().

anushree1
Specialist II
Specialist II

Please try the below script:

Load Text(F1) as F1;
LOAD * INLINE [
F1
9966
00009966
];

Peony
Creator III
Creator III
Author

Allready tried. The result is the same.

anushree1
Specialist II
Specialist II

I see the belo result on using the code i shared:

clipboard_image_0.png

 

Is this not the expected result

Peony
Creator III
Creator III
Author

Tried once more and it works! Maybe I just missed something during the first check. Thank you very much for help.