Show columns name only in form and detail views

Is it possible to show the name of a column only in form and details views and not show it in list view instead?

Solved Solved
0 3 495
1 ACCEPTED SOLUTION

I see.  For that you will need to use an expression in the Display Name property under the Display section for that column.  An expression like this:

If (CONTEXT("ViewType") = "Table",
    "",
    "Your Original Column Name Here"
)

 

View solution in original post

3 REPLIES 3


@FaCe wrote:

and not show it in list view


Do you mean Table View OR Something else?

For a Table View, there is a setting to turn off Column Headers.  See image.

Screenshot 2023-09-16 at 4.29.02 PM.png

 

Yes for table view but i'd like only to hide a single column name not all ... 

I see.  For that you will need to use an expression in the Display Name property under the Display section for that column.  An expression like this:

If (CONTEXT("ViewType") = "Table",
    "",
    "Your Original Column Name Here"
)

 

Top Labels in this Space