Hi. I am asking for advice on final editing. The qus1 file is the current FME output. In the StartpointDesignator column, I need to remove duplicate values and output them to the CSV output in the format see the "vzor" file.
Thank you
Hi. I am asking for advice on final editing. The qus1 file is the current FME output. In the StartpointDesignator column, I need to remove duplicate values and output them to the CSV output in the format see the "vzor" file.
Thank you
use DuplicateFilter transformer
use DuplicateFilter transformer
OK, thank you. And collating data into one line according to vzor in attachment?
use string concatenator or attribute manager or attribute creator.
to join all the attributes to one text string
use string concatenator or attribute manager or attribute creator.
to join all the attributes to one text string
Thanks for the reply. I looked at the transformer settings and didn't fix the problem with either one. It would work via attributemanager, but I have 4500 rows, I need something automated. I need to set this: Write all values of the startpointDesignator attribute on one line if Name has the same value (for example A1 ).
Thank you
Thanks for the reply. I looked at the transformer settings and didn't fix the problem with either one. It would work via attributemanager, but I have 4500 rows, I need something automated. I need to set this: Write all values of the startpointDesignator attribute on one line if Name has the same value (for example A1 ).
Thank you
Thanks for the reply. I looked at the transformer settings and didn't fix the problem with either one. It would work via attributemanager, but I have 4500 rows, I need something automated. I need to set this: Write all values of the startpointDesignator attribute on one line if Name has the same value (for example A1 ).
Thank you
Here is the data I need to sort according to the VZORu in the previous post.
Thank you
Use a Listbuilder transformer (group by Name) to create a list of the attributes you want to combine, followed by a ListConcatenator to write the list values to a single attribute.
Use a Listbuilder transformer (group by Name) to create a list of the attributes you want to combine, followed by a ListConcatenator to write the list values to a single attribute.
Perfect, the solution works. Thank you very much