Form View - Add action vs Edit action

Is it possible to two different form views?

Example: Table A with Columns A, B, C, D

While ADDing new row, i want to user to see only Columns A,B in the form

But while Editing the same view i want to see Columns A,B,C,D

Thanks for you time

Solved Solved
0 2 114
  • UX
1 ACCEPTED SOLUTION

There are various techniques to choose from depending on the specifics of your use case.

One basic approach is to only show columns C and D if the row already exists. Use an expression like the following in those columns' Show? property:

IN([KeyColumn], Table[KeyColumn])

View solution in original post

2 REPLIES 2

There are various techniques to choose from depending on the specifics of your use case.

One basic approach is to only show columns C and D if the row already exists. Use an expression like the following in those columns' Show? property:

IN([KeyColumn], Table[KeyColumn])

This worked! thanks for the help @dbaum 

Top Labels in this Space