Reputation: 3929
I have a DataWindow with some columns. One column contains numbers of a certain object. I want to put a Edit(mask?) on this column, so that when it is bigger than 0, change column value to "Available".
How can I Achieve this in design view?
Upvotes: 2
Views: 1631
Reputation: 6225
I'd delete the column (relax... deleting the column from the UI does not equate to deleting it from the data set) and replace it with a computed field with an expression something like:
if (col > 0, "Available", "Unavailable")
Good luck,
Terry.
Upvotes: 4