Skip to main content
Question

select group by Value

  • January 6, 2020
  • 4 replies
  • 23 views

rakeshreddy0996
Forum|alt.badge.img

I have a filed like Language and Values as English, French, Italian, Hindi and Etc

But i don't know how many languages are present in that field.

Challenge: I would like to export separately for each language.

 

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.

4 replies

philippeb
Enthusiast
Forum|alt.badge.img+22
  • Enthusiast
  • January 6, 2020

Depends how the field is constructed, and I'm not sure to understand what you want to do, but if you want to know how many different languages contain that field, I would use a DuplicateFilter and set the parameter on that field.


redgeographics
Celebrity
Forum|alt.badge.img+62

You can set a fanout on the output feature type, use that attribute as the name of the feature and it will generate a separate output for every unique value.


rakeshreddy0996
Forum|alt.badge.img

Depends how the field is constructed, and I'm not sure to understand what you want to do, but if you want to know how many different languages contain that field, I would use a DuplicateFilter and set the parameter on that field.

@philippeb not only that, i want export those individual language as individual shape files also.


rakeshreddy0996
Forum|alt.badge.img

You can set a fanout on the output feature type, use that attribute as the name of the feature and it will generate a separate output for every unique value.

@redgeographics thank you