Length of formula fields

Hello Baserow community,

I am working in a case where I need to do a lot of text fields concatenations, what I have found is that when the result is longer than the standard length of a field ( I guess) it is not possible for me to see the entire value without opening the general view of the row. Is there a way to see all the filed value in the grid format?

view

Thank you for your help.

If you convert them to strings or plain texts using the ‘join’ formula, you will be able to see the full texts. Create another formula field like this:

join(‘the field you want to convert to string’, ‘,’)

1 Like