Question

create object based on list

  • 25 April 2019
  • 2 replies
  • 2 views

Badge +1

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

 


2 replies

Userlevel 1
Badge +10

Attributesplitter to split on ; followed by a list exploder

Badge +1

Perfect! Thanks!

Reply