-1
Dear, I have a table with the configuration:
Tipo Medida Valor
1 0.2 5.00
1 0.4 6.00
1 0.1 5.00
1 0.3 5.00
2 0.1 3.00
2 0.2 3.00
2 0.3 5.00
2 0.4 5.00
I would like to group the values where they should contain the same type, a minimum and maximum value for this type given that the value is the same. The result would be something like:
Tipo Minimo Maximo Valor
1 0.1 0.3 5.00
1 0.4 0.4 6.00
2 0.1 0.2 3.00
2 0.3 0.4 5.00
Thank you
What have you tried so far? What problems have you encountered?
– Caffé
Hello, @Thiago. It is gladly that when you post a question, you also post code snippets or explain what you have tried. The way you posted the question, you’re simply outsourcing the work and that’s not what we want in the community :)
– William Barbosa
Okay, I understand your comment, I agree and I apologize, I will pay attention to that fact. Thank you
– Thiago