Isblank doesn't seem to work with link fields

Are you using our SaaS platform (Baserow.io) or self-hosting Baserow?

SaaS

What are the exact steps to reproduce this issue?

Creating a formula field and trying to test if a link field “isblank”. The “if” function associated with it acts as if the field isn’t blank and yet no link has been established with a row in the other table.
I’m thinking the “array” type can’t be “blank” but then what’s the correct function to call ?

Hey @Paragon, you can also use this formula:

if(length(link_field) = 0, "Empty", "Not empty")

This will return Empty when no row is linked.

Will it work for you?