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

Create text field where total = Fail

Community Beginner ,
Sep 08, 2022 Sep 08, 2022

Copy link to clipboard

Copied

I have a simple form with a column of check boxes.  The value of each checkbox is one.

I want the text field to do a simple calculation of the total, done, no problem.

However, the next step I do need help with is to make that text box say Fail if the quantity of checkboxes is over a certain quantity.

Example:  There are 30 checkboxes

If 9 checkboxes are marked then text field should say Fail.

I know this is a very simple issue for most of you but I have not used adobe in years and never needed calculations.

Thank you for your time and patience. 

TOPICS
How to

Views

164

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 ,
Sep 08, 2022 Sep 08, 2022

Copy link to clipboard

Copied

LATEST

Since you already have total calculated as 'Validation' script of that text field use this:

if(event.value > 8)event.value = "Fail";

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