RE: Math In MX?

2002-10-03 Thread Michael Corbridge
To: CF-Talk Subject: Math In MX? Ok.. I'm confused... If... #countmale.record# = 379 (which a cfoutput confirms) And... #responses# = 1093 (which a cfoutput confirms) Then how the heck does... cfset Answer = #CountMale.RecordCount#/#Responses# End up being 0.0111569031498 ? The answer

RE: Math In MX?

2002-10-02 Thread Everett, Al
, October 01, 2002 10:19 PM To: CF-Talk Subject: Math In MX? Ok.. I'm confused... If... #countmale.record# = 379 (which a cfoutput confirms) And... #responses# = 1093 (which a cfoutput confirms) Then how the heck does... cfset Answer = #CountMale.RecordCount#/#Responses# End up

Math In MX?

2002-10-01 Thread Lee Fuller
Ok.. I'm confused... If... #countmale.record# = 379 (which a cfoutput confirms) And... #responses# = 1093 (which a cfoutput confirms) Then how the heck does... cfset Answer = #CountMale.RecordCount#/#Responses# End up being 0.0111569031498 ? The answer is simple math.. And SHOULD be..

RE: Math In MX? (SOLVED)

2002-10-01 Thread Lee Fuller
of the NumberFormat function, math worked normally. Whew! Take care all! Lee | -Original Message- | From: Stacy Young [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, October 01, 2002 8:46 PM | To: CF-Talk | Subject: RE: Math In MX? | | | How bout: | cfset Answer = CountMale.RecordCount

Re: Math In MX?

2002-10-01 Thread jon hall
I can't make 379/1093 = anything but 0.346752058554 on my MX box... -- jon mailto:[EMAIL PROTECTED] Tuesday, October 1, 2002, 10:18:40 PM, you wrote: LF Ok.. I'm confused... LF If... LF #countmale.record# = 379 (which a cfoutput confirms) LF And... LF #responses# = 1093 (which a

RE: Math In MX?

2002-10-01 Thread Lee Fuller
| Subject: Re: Math In MX? | | | I can't make 379/1093 = anything but 0.346752058554 on my MX box... | | -- | jon | mailto:[EMAIL PROTECTED] | | Tuesday, October 1, 2002, 10:18:40 PM, you wrote: | LF Ok.. I'm confused... | | LF If... | | LF #countmale.record# = 379 (which a cfoutput confirms

RE: Math In MX?

2002-10-01 Thread Stacy Young
How bout: cfset Answer = CountMale.RecordCount/Responses -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 11:31 PM To: CF-Talk Subject: RE: Math In MX? Now THAT's odd... 'cause we can't get it to BE that answer. (and actually.. I made