How to group repeated values ​​in a table

Hello everyone

We have a requirement where we must group repeated values ​​in a table, that is, as seen in the image, the name of a user appears 3 times, how to make it only appear once

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    1. i don't see any image, you might want to check that your post worked correctly
    2. what's your use case? some more detail about the shape of your data, where you're accessing it from, and what you hope to do with it / how / why, would be helpful in helping formulate some sort of answer or suggestion - as it stands, i can't even tell whether you're after some sort of DB solution, view, interface technique/trick, or something completely different.
  • Hi Mike, apparently the image did not upload correctly. The data is consulted through record types and displayed in a grid

     

     

    The question is how could I assign the values of the "Importes" column to the "Directores" 
    column as appropriate

     

    Currently the values come out like this:

    For example:

    James: 1,2,3,4,5,6,7,8,9

    Jeff: 1,2,3,4,5,6,7,8,9

    Mike: 1,2,3,4,5,6,7,8,9


    and i need something like that

    James: 4,5,6

    Jeff: 1,2,3

    Mike: 7,8,9

Reply
  • Hi Mike, apparently the image did not upload correctly. The data is consulted through record types and displayed in a grid

     

     

    The question is how could I assign the values of the "Importes" column to the "Directores" 
    column as appropriate

     

    Currently the values come out like this:

    For example:

    James: 1,2,3,4,5,6,7,8,9

    Jeff: 1,2,3,4,5,6,7,8,9

    Mike: 1,2,3,4,5,6,7,8,9


    and i need something like that

    James: 4,5,6

    Jeff: 1,2,3

    Mike: 7,8,9

Children