It would be nice to have a way to lock a cell for editing depending on certain conditions.
In the example Above I only want the Checked Out To Column (cell) to be editable when CheckedIn=True.
This will prevent someone changing the field when my equipment is Checked Out.
I am already disabling the buttons. They are never active at the same time. and the Check-Out button is only active when I have text in the Checked Out To field and CheckedIn=True.
Would be nice to have a similar Disabled if for the Column the Same as the Buttons have
You cannot disable columns (not at the moment at least). But you can implement a kind of workaround:
For each “input” column that can be filled, make an “output” column
For the “output” column write a formula that either mirrors the input value, or displays some other value if the input is invalid and/or otherwise should not be used.
Then use the “output” column instead of the input one in the rest of your doc.
Optionally, add an automation to reset the input value if it’s invalid (i.e. if it’s not equal to output, as calculated by your formula)
I’ve used things like this in the past but its a bit confusing as your “display” column isn’t visible at the same spot as the “edit” column. So you have to have a duplicate column visible. Its useful for reports but frustrating for data entry and minimizing views.