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

Hide Text when not used

New Here ,
Mar 16, 2017 Mar 16, 2017

Copy link to clipboard

Copied

Creating my first Fillable invoice, I have 21 product lines. In the Amount box I get $0.00 is there anyway to hide this? I really only want the fields I enter to print.

Also, is there a way to have the @ symbol entered in after the user enters in the quantity? I have the first field set up with the @ being the default Value. If I do this for the rest of the column I'll a bunch of @ all the way down the colum.

pdfform.jpg

TOPICS
PDF forms

Views

263

Translate

Translate

Report

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
1 ACCEPTED SOLUTION
Community Expert ,
Mar 16, 2017 Mar 16, 2017

Copy link to clipboard

Copied

LATEST

- As the field's custom validation code enter this:

if (event.value==0) event.value = "";

- That's possible using a custom Format script, but then you won't be able to define it as a Number field, unless you do so yourself with a script.

View solution in original post

Votes

Translate

Translate

Report

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
Community Expert ,
Mar 16, 2017 Mar 16, 2017

Copy link to clipboard

Copied

LATEST

- As the field's custom validation code enter this:

if (event.value==0) event.value = "";

- That's possible using a custom Format script, but then you won't be able to define it as a Number field, unless you do so yourself with a script.

Votes

Translate

Translate

Report

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