boolean - Lotus Notes - How to read out checkbox values in formula language -


i working on xml export lotus notes. got following form field:

form lotus notes

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

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -