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 497
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
Top Labels in this Space