Hello,
i need to show unique values of two column in my grid .for example…i am getting data from backend in below format
COLUMN1 COLUMN2 COLUMN3
————————–
A1 X1 P1
A1 X1 P2
A2 X2 P1
A2 X2 P2
I need to show in grid such a way that it shows
COLUMN1 COLUMN2
—————-
A1 X1
A2 X2
currently if i remove the 3rd columns from display it show 4 rows but according to my requirement i need to show only 2 rows.
is it possible to do in UI.
i can do this by using group by functionality in sql but i can not do changes in backed sql.that is the constrain. so is there any possible logic which i can apply in UI.