I've followed all 27 steps from your document. Now I'm geting an "only
integers allowed" error message when I click on any radio button.
Again, I checked my radio button properties in the repeating table. Each is
set to whole number integer, with corresponding values of 0-5. The zero was
set as default for the n/a button.
My "Average Rating" field is set decimal double, with 1 decimal place.
I think my problem might be with step #26.
In the rules on the helperfield in first part of #26:
Action: Set a field's value
Field: AvgJobExperience
Value: averageJobExperience = avg(experienceRating)
In the rules on the experience rating second part of #26:
Action: Set a field's value
Field: experienceRating
Value: helperField = " "
Action: Set a field's value
Field: experienceRating
Value: helperField = .
Is this correct?
Thanks so much for any help.
> The Applicant Rating form uses custom code to calculate averages. It might
> help to take a look at this solution
[quoted text clipped - 31 lines]
> >
> > Any help is appreciated. Thanks.
You are looking at the "Action" dialog box, instead of the "Rule" dialog box.
The rules listed in the "recipe" on the website are the results for when you
are viewing the "Rule" dialog box.
So let's try and do it your way... :)
> In the rules on the helperfield in first part of #26:
> Action: Set a field's value
> Field: AvgJobExperience
> Value: averageJobExperience = avg(experienceRating)
Try this for the helperfield field when you are in the "Action" dialog box
for its rule:
Action: Set a field's value
Field: AvgJobExperience
Value: avg(experienceRating)
> In the rules on the experience rating second part of #26:
> Action: Set a field's value
> Field: experienceRating
> Value: helperField = " "
Try this on the experienceRating field when you are in the "Action" dialog
box for its rule:
Action: Set a field's value
Field: helperField
Value: ""
> Action: Set a field's value
> Field: experienceRating
> Value: helperField = .
Try this for the second action for the rule on experienceRating:
Action: Set a field's value
Field: helperField
Value: .
Now you should be good to go.
---
S.Y.M. Wong-A-Ton
> I've followed all 27 steps from your document. Now I'm geting an "only
> integers allowed" error message when I click on any radio button.
[quoted text clipped - 60 lines]
> > >
> > > Any help is appreciated. Thanks.
Daktari - 26 Jan 2006 18:51 GMT
I'm jumping up and down!!!
I can't tell you how happy you've made me.
This works perfectly.
Thanks a million times over!
> You are looking at the "Action" dialog box, instead of the "Rule" dialog box.
> The rules listed in the "recipe" on the website are the results for when you
[quoted text clipped - 102 lines]
> > > >
> > > > Any help is appreciated. Thanks.
S.Y.M. Wong-A-Ton - 26 Jan 2006 19:06 GMT
I am happy you're happy. :) And you're very welcome!
---
S.Y.M. Wong-A-Ton
> I'm jumping up and down!!!
> I can't tell you how happy you've made me.
[quoted text clipped - 108 lines]
> > > > >
> > > > > Any help is appreciated. Thanks.
Daktari - 27 Jan 2006 13:55 GMT
Just a note in case anyone else experiences this problem....
I had to change the value of the n/a column. The directions say to make the
value set to zero (0). If you do that, it "penalizes" the average score by
averaging in a zero value for each n/a chosen.
I made the value blank for the n/a field and this made the average formula
work correctly.
Thanks again for your easy-to-understand directions and your quick response.
> I am happy you're happy. :) And you're very welcome!
> ---
[quoted text clipped - 112 lines]
> > > > > >
> > > > > > Any help is appreciated. Thanks.
S.Y.M. Wong-A-Ton - 27 Jan 2006 15:34 GMT
Thanks for the bugfix. I will check it and correct it on the website.
---
S.Y.M. Wong-A-Ton
> Just a note in case anyone else experiences this problem....
> I had to change the value of the n/a column. The directions say to make the
[quoted text clipped - 122 lines]
> > > > > > >
> > > > > > > Any help is appreciated. Thanks.
Michael - 30 Jan 2006 20:21 GMT
How do you get it to average all of the rows? I am finding that I can get it
to average for the row that I have in the AVG(..) funciton, but in the
article it only attaches to one row.
What am I missing?
Michael
> Thanks for the bugfix. I will check it and correct it on the website.
> ---
[quoted text clipped - 126 lines]
> > > > > > > >
> > > > > > > > Any help is appreciated. Thanks.
S.Y.M. Wong-A-Ton - 31 Jan 2006 09:47 GMT
It is best to retrace all of the steps in the article and make sure that
you've done each correctly.
There are a two things that are important for this solution to work:
1. Using a repeating group to place the option button field in.
2. Not calculating the average from within the option button field in the
repeating group, but use the helperField to do this.
It does not matter that the AVG function is only attached to the first row.
Since the option button field is placed in a repeating group, the formula in
the helperField will calculate the average for the option button field over
all rows in the repeating group.
---
S.Y.M. Wong-A-Ton
> How do you get it to average all of the rows? I am finding that I can get it
> to average for the row that I have in the AVG(..) funciton, but in the
[quoted text clipped - 3 lines]
>
> Michael