REM {Prompt for which item needs to be removed.};
@DoWhile(
delField := @Prompt( [OkCancelEdit] ; @DbTitle + " - " +
@ViewTitle ; "Enter the name of the item you wish to remove."; "" ) ;
delField = "" );
FIELD delField := @Unavailable;
On running the code, I realized that instead of deleting the item that is keyed in by the user and stored in the variable "delField", the code is actually trying to delete an item named "delField", which it does not find and hence the code does not work as intended. This can be easily achieved using LotusScript. Is there an easy way to do this in @Formula Language?
fieldName := @Prompt([OkCancelEditCombo]; "Field Name"; "Enter FieldHowever, I'm afraid it might not work in R5. If it doesn't, there's not a way to do what you are asking.
Name."; ""; @DocFields); @If(fieldName = ""; ""; @SetField(fieldName ; @Unavailable))
This was first published in February 2005