Hide a field only when editing record

I know how to hide a field before a record has been created, but now I want to hide a field only when the record is being edited.

Reason being - It is a [Feedback Sent] field, and I only want it to be seen in the summary view, but I don't want to cause confusion by it being visible while updating the record. An automation updates the field as needed.

I thought I might be able to use CONTEXT() but I can't see how to restrict this to the editing view only?

Solved Solved
0 2 76
  • UX
1 ACCEPTED SOLUTION

I think you should be able to use CONTEXT("ViewType") = "Form".

Alternatively, you should be able to simply edit the form view to exclude the columns you don't want.

View solution in original post

2 REPLIES 2

I think you should be able to use CONTEXT("ViewType") = "Form".

Alternatively, you should be able to simply edit the form view to exclude the columns you don't want.

So, I had to use <> as opposed to = but yes, this worked perfectly, thank you!

Top Labels in this Space