Skip to main content
Solved

Finall editing

  • October 31, 2022
  • 8 replies
  • 36 views

fmesafe.podpora
Contributor
Forum|alt.badge.img+11

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

Best answer by geomancer

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.

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.

8 replies

f.kemminje
Contributor
Forum|alt.badge.img+11
  • Contributor
  • 189 replies
  • October 31, 2022

use DuplicateFilter transformer


fmesafe.podpora
Contributor
Forum|alt.badge.img+11
  • Author
  • Contributor
  • 136 replies
  • October 31, 2022

use DuplicateFilter transformer

OK, thank you. And collating data into one line according to vzor in attachment?


f.kemminje
Contributor
Forum|alt.badge.img+11
  • Contributor
  • 189 replies
  • November 1, 2022

use string concatenator or attribute manager or attribute creator.

to join all the attributes to one text string


fmesafe.podpora
Contributor
Forum|alt.badge.img+11
  • Author
  • Contributor
  • 136 replies
  • November 1, 2022

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


f.kemminje
Contributor
Forum|alt.badge.img+11
  • Contributor
  • 189 replies
  • November 1, 2022

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

Send me the sample data

fmesafe.podpora
Contributor
Forum|alt.badge.img+11
  • Author
  • Contributor
  • 136 replies
  • November 1, 2022

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


geomancer
Evangelist
Forum|alt.badge.img+58
  • Evangelist
  • 932 replies
  • Best Answer
  • November 1, 2022

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.


fmesafe.podpora
Contributor
Forum|alt.badge.img+11
  • Author
  • Contributor
  • 136 replies
  • November 1, 2022

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