how to merge same values of single column in list view

  • 10 July 2020
  • 2 replies
  • 30 views

Badge +4

I have a requirement where in list view there is a structure like below:

a b c

a c f

a v b

b d d 

b e t

b d y 

Expected output

 

a b c

  c f

  v b

b d d 

   e t

  d y 

 

 

Is it possible?


2 replies

Badge +7

Hi  @PM1 

 

I don't think that it's very easy to do it with a list view.

Maybe with javascript injection.

 

Personally I think that the easiest solution should be to use a SQL stored procedure if the data comes from SQL server.

 

Best regards,

Olivier

Userlevel 5
Badge +13

How are you retrieving the data displayed in this list? Whatever the source of the data is may be the right place to form the output how you want (stored procedure, view, web service...)

Reply