Show filter not working on text for url type?

I’m trying to hide a GSheet url if GSheetID does not exist. I’ve got:
3X_e_8_e884a156ee88402737ea82adacbaf50161582e5e.png


where the formula is
and the show filter is 3X_e_f_effdc5ee68b2f2c0886f5b669d04f9e1d3341ea6.png

The url icon is successfully hidden when GSheetID does not exist but the text still shows in detail view:

3X_2_5_258d7d723b22be3a81f3422bbd53e6c96b302cb5.png

What am I doing wrong?

0 10 352
10 REPLIES 10

Don’t know if this helps

The text formula can generate a blank value if gsheetid is blank, else “hyperlink etc”

The showif can just be isnotblank([gsheetid])

Can you post more screenshots ?

What other screen shots did you need? I’ve even tried using LEN([GSheetID]) = 10 in the show filter since I know the GSheetID if it exists will be 10 characters long.

Steve
Platinum 4
Platinum 4

What is a "show filter?

In the data columns:

That got it.

Is there at least one column always visible and never blank in your table ? Maybe detail view can’t be blank. I’d suggest a screenshot of a detail view example, and of the table columns in the editor

Yes, there’s always something visible in the table.

3X_0_4_04e008395588dc70efd81c4f508e06a06c1e7d15.png

Also, as app formula (in case we can’t manage to hide it) , I’d suggest

If(isnotblank([gsheetid]); hyperlink(…);"")

for esthetics

Or just:

IFS(ISNOTBLANK([gsheetid]), HYPERLINK(…))
Top Labels in this Space