Auto-fill column on change other column and edit value

RaulFV
New Member

Hi,
Iโ€™m trying to autofill a column in a form when the user changes other column, and after doing this the user can modify the value of the autofill column.
If I use a formula in the column I canโ€™t edit the value.
The initial value is not valid because I canโ€™t know until the user select a value in the other column.

The exact case Iโ€™m trying to solve is:
I have a table with elements and other with type of elements.
I want to fill a column order in the elements table with the maximun order plus 1 of the elements of the same type.

Formula:
Max(
select(
Elements[Order],
[Type] = [_THISROW].[Type]
)
) + 1

Solved Solved
0 2 785
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4

Thanks Steve.
I had seen the documentation but not noticed that while doesnโ€™t asign a value to the related column the formula stills apply.

Top Labels in this Space