boolean - Lotus Notes - How to read out checkbox values in formula language -
i working on xml export lotus notes. got following form field:
now, want read out field value, using following formula:
@if(ap_bewerbungeingegangen=@true;@text(1);@text(0))
this returns 0 when should return 1, why case? got idea?
thank in advance
notes doesn't save checkbox's value boolean. in case value might "bewerbung eingegangen" if checked , "" if not. have 1 value can checked or not, formula can this:
@if(ap_bewerbungeingegangen != ""; "1"; "0")
in general, checkbox can have several entries , possible define aliases values. can check field properties in form.
Comments
Post a Comment