Hi Jesus,
You may be able to achieve this using a scripted calculation view with window functions. You could write an sql statement as follows to achieve this
SELECT ID, CHAR, FIRST_VALUE(Mes) over (partition by ID)
FROM TABLE
This will always return the first value for each ID rather than aggregating by ID.