Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

olegsb
olegsb
Offline

Badges

Badges
1

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts

Posts
1

Discussions

Discussions
0

Questions

Questions
1

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by olegsb
Customize the badges you want to showcase on your profile
Re: Text result based on calculated number - Adobe LiveCycle 24-05-2012
Hi,An if/else statement would work. The following is in JavaScript in the calculate event of the TextField:if (NumericField.rawValue == 100) { this.rawValue = "Low"; }else if (NumericField.rawValue == 200) { this.rawValue = "Medium"; }else if (NumericField.rawValue == 300) { this.rawValue = "High"; }else { this.rawValue = ""; }Hope that helps,Niall

Views

82

Likes

0

Replies

0