2
votes

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?

1

1 Answers

4
votes

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.