Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

I'm having trouble with formatting of calculated fields

New Here ,
Jan 03, 2014 Jan 03, 2014

I have the following text tags in my Word document:

{{$E}}


{{$EMF  }}

{{#E=escrow_es_:checkbox:signer1}}

{{#EMF=emf_es_:signer1:calc(if(escrow = “checked”, 50, 0)):format(number, “$,0.00”)}}

The idea is when the signer checks the checkbox, the EMF field shows '$50.00', and if he leaves the box unchecked, the EMF field shows '$0.00'.

However, although the $50.00 shows OK when the box is checked, the value shows as 0 (instead of $0.00) if the box is unchecked. Is this a bug or am I defining my calculated field incorrectly?

Also, according to the user guide, the format (font,type,size) of the field will be based on the format of the first { but although I have set that to Arial bold 10pt, the field still shows as Helvetica plain 10pt. Any suggestions/ideas?

Thanks!

Christophe.

821
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , Jan 06, 2014 Jan 06, 2014

try putting the 0 in quotes

:calc(if(escrow = “checked”, 50, "0"))

Translate
Adobe Employee ,
Jan 06, 2014 Jan 06, 2014
LATEST

try putting the 0 in quotes

:calc(if(escrow = “checked”, 50, "0"))

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines