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

erinb1211
erinb1211
Offline

Badges

Badges
7

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
9

Discussions

Discussions
0

Questions

Questions
4

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by erinb1211
Customize the badges you want to showcase on your profile
How to calculate age in years and months? - Adobe LiveCycle 17-12-2012
Hello -I currently have a form that calculates a person's age in full years using the following script (FormCalc):if ( not Row1[1].DateTimeField1 <> Null ) then var DateTimeField1 = Date2Num( Row1[1].DateTimeField1, "YYYY-MM-DD" ) var currentDate = Date() var years = ( currentDate - DateTimeField1 ) / 365 $ = Floor ( years )else $ = ""endifI need to change this formula to instead calculate the age in years and months. For instance, if the user inputs their date of birth as 01/15/1979, then the o...

Views

979

Likes

0

Replies

0
Re: How do I calculate age based on user inputed birthdate? - Adobe LiveCycle 26-03-2012
Would it be possible to change the calculation for the Years of Employment to calculate years and months? For example, if the input is 2/26/2011, the output would be 1.1 (1 year, 1 month)?

Views

780

Likes

0

Replies

0
Re: How do I calculate age based on user inputed birthdate? - Adobe LiveCycle 20-03-2012
Thank you so much! That worked perfectly.

Views

779

Likes

0

Replies

0
How do I calculate age based on user inputed birthdate? - Adobe LiveCycle 19-03-2012
Hi there -I'm working on a form where the user will enter both their date of birth and their start date for employment. I need to create two fields that will calculate their full years of age based on their date of birth, and their full number of years of service, based on their start date. Does anyone have a good script that will make these calculations? I normally use FormCalc, but am open to Java if there's an easier solution.Thanks,Erin

Views

4.0K

Likes

0

Replies

4
Re: Script Error "missing or illegal parameters" - Adobe LiveCycle 09-12-2011
I have been battling this stupid script for a month now and still have the same problem. I really can't see where the issue is, but it still comes up with "missing or illegal parameters". This is my script:if (form1.#subform[0].Table1.Row3.age<45) then form1.#subform[0].Table2.Row2[1].I31=0 elseif (form1.#subform[0].Table1.Row3.age==45) then form1.#subform[0].Table2.Row2[1].I31=PV(form1.#subform[0].T11, form1.#subform[0].NumericField1/12, 17.62*12)elseif (form1.#subform[0].Table1.Row3.age==46) t...

Views

103

Likes

0

Replies

0
Script Error "missing or illegal parameters" - Adobe LiveCycle 10-11-2011
I am trying to write a script in formcalc calculates the present value based on an age. So I have to do a conditional statement that includes the present value calculation. I keep getting this "missing or illegal parameters" error, and according to the adobe manual, I'm putting the values in the correct order. Here is a screen shot of my error:Where "Table1.Row3.age" is age, "I31" is the present value, "Row1.I29" is the monthly payment, "NumericField1" is the interest rate, and then depending on...

Views

1.0K

Likes

0

Replies

3
Re: Can you create a fillable form that can be saved by the client? - Adobe LiveCycle 03-10-2011
Great! Where do I find that?

Views

125

Likes

0

Replies

0
Can you create a fillable form that can be saved by the client? - Adobe LiveCycle 03-10-2011
I created a very lengthy business planing guide in this program and sent it out for testing - only to find out that if the user only has basic adobe (not any pro programs) they can't save the document - they have to complete it and print it or else loose all their work. Is there a setting somewhere that I missed that will allow the document to be saved? Any guidance on this would be greatly appreciated.Thanks!

Views

1.2K

Likes

0

Replies

4
Syntax Error on FormCalc Scripts - Adobe LiveCycle 28-09-2011
I am trying to write a script that divides one cell with another. I first got an arithmetic error and went to the blogs and found out that's becuase it was trying to divide it by zero. So, I followed the suggested formula, which is an if/then formula:a4.rawValue = if (a2.rawValue>0) then (a3.rawValue/a2.rawValue) endifHowever, when I do this, I get the following error:Syntax error near token 'then' on line 2, column 35.I have tried using spaces, commas, everything and it just will not go away. I...

Views

774

Likes

0

Replies

1