How hide header for specific column in Detail view

Hi,

How to hide header for a specific column in Detail view.

Let's say I wanna hide only the header for column [HOBBY].

How to achieve that?

Thanks for your help.
I really appreciate it.

 

0 7 838
7 REPLIES 7

You could use a conditional expression in the Display Name of the Hobby column like this:

IF(
  CONTEXT("View") = "Detail view"
  ," "
  ,"HOBBY"
)

 Hello,  
I've tried using both the suggested expression and a simple blank space (" "), but I'm still unable to hide the header in the details view. Could there have been recent changes to AppSheet that affect this?
Regards, Yuval

You can try: IF(CONTEXT("ViewType") = "Detail"," ","Hobby")

Thanks for the answer, but I found an easy way.

In the `Display Name` of the [Hobby] column just add:

 " "

 

Done 😀

 

Yes, if you want to hide the name everywhere

No, it does not hide the name everywhere, it only hides the header in [Hobby] column.

The solution I posted was how to hide the column header in a specific view which I thought is what you wanted. After all you specifically highlighted the fact that you wanted it hidden in Detail view.

If you just want to hide the header for that column wherever it appears, even in forms, then yes just setting the display name will work.

Top Labels in this Space