Group by linked table

I suggest the ability to group by a linked table field. I think it’s probably currently not implemented because linked tables allow for multiple linked items. Two suggestions for implementation:

  1. Allow for the option to limit linked field to only link to one record. That would allow current configurations to group by that field.
  2. Hoping eventually it will be possible to group by a field that allows for multiple selections (multi-select field or linked table field).

Hello @bobo,
I was looking for this exact feature today !!
I have found a post adressing the subject

Please vote for it to make the development faster. This feature is very usefull

1 Like

Hi,

There is indeed an issue for implementing this feature: Group by link to table (link row) field (#2306) · Issues · Baserow / baserow · GitLab.

Meanwhile, I work-around that I use a lot is creating an additional field. This field is a formula field with the following formula: join(lookup('Name of the Linked Field','Name of the field in the Linked table),' ').

This converts all values in the linked field to a long strong that can be used for grouping.

1 Like

I love it. Thank you very much. :heart_hands:

@frederikdc ,
Did you used with a “single select” linked field ?
image

I’ve added a concat() to make it works.

join(concat(lookup(‘Projects’,‘PM Stage’),’ ‘),’')

The workaround of the workaround…