Skip to main content
Question

create object based on list

  • April 25, 2019
  • 2 replies
  • 27 views

alc33
Contributor
Forum|alt.badge.img+11
  • Contributor
  • 54 replies

Hello!

I have points and on each point is attached a list of value, separated with ";"

point 1 : 1;4;5;6

point 2 : 6;5;8;3;10;45

...

I would like to duplicate each point as many time as there are values and pick only one of the value.

point 1 => 4 duplications = 4 points

duplication 1 : value 1

duplication 2 : value 4

duplication 3 : value 5

duplication 4 : value 6

.point 2 => 6 duplications

...

I would like to do this because it doesn't exist the fonction "contains" on attributefilter so I need the exact value on the field to separate my data. Because otherwise I will have used Cloner and then tester, but there is no way to import a list on"right values" like on attributefilter and I have a lot of value to write.

Sorry, maybe it's not very clear :)

 

Thanks for your answer

 

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

ebygomm
Influencer
Forum|alt.badge.img+44
  • Influencer
  • 3427 replies
  • April 25, 2019

Attributesplitter to split on ; followed by a list exploder


alc33
Contributor
Forum|alt.badge.img+11
  • Author
  • Contributor
  • 54 replies
  • April 25, 2019

Perfect! Thanks!