Can row grouping be case insentitive?

Can row grouping be case insentitive?

JimmyWaldroJimmyWaldro Posts: 1Questions: 1Answers: 0

When using row grouping the data is grouped by the column you specify but if the data has values with different cases it groups them independently. i.e. "London" and "LONDON" would be grouped separately. Is there a way to make it case insensitive so they would be grouped together?

Answers

  • allanallan Posts: 61,971Questions: 1Answers: 10,160 Site admin

    In the grouping example it uses if ( last !== group ) {. You could change that to compare the two values case insensitive (just make them both lowercase for example).

    Allan

This discussion has been closed.