UDF question -- make num a string

2003-01-17 Thread Owens, Howard
I'm trying to do a little UDF to convert something like .77809 to 78% If I do something like: outNum=finalResult + '%'; I get an error that says cannot convert % to a number ... well, I don't want it to be a num. I want it to be a string. I can't find a way to get a string output in the

RE: UDF question -- make num a string

2003-01-17 Thread Robert Bailey
outNum = finalResult '%'; Robert Bailey [EMAIL PROTECTED] Famous for nothing! http://www.tinetics.com -Original Message- From: Owens, Howard [mailto:[EMAIL PROTECTED]] Sent: Friday, January 17, 2003 4:29 PM To: CF-Talk Subject: UDF question -- make num a string I'm trying to do

RE: UDF question -- make num a string

2003-01-17 Thread Robert Bailey
[mailto:[EMAIL PROTECTED]] Sent: Friday, January 17, 2003 4:29 PM To: CF-Talk Subject: UDF question -- make num a string I'm trying to do a little UDF to convert something like .77809 to 78% If I do something like: outNum=finalResult + '%'; I get an error that says cannot convert % to a number

Re: UDF question -- make num a string

2003-01-17 Thread Marius Milosav
: Friday, January 17, 2003 7:29 PM Subject: UDF question -- make num a string I'm trying to do a little UDF to convert something like .77809 to 78% If I do something like: outNum=finalResult + '%'; I get an error that says cannot convert % to a number ... well, I don't want it to be a num

Re: UDF question -- make num a string

2003-01-17 Thread Charlie Griefer
outNum = finalResult '%' is the concatenation operator in CF (yeah, i know...it can be annoying) :) charlie - Original Message - From: Owens, Howard [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, January 17, 2003 5:29 PM Subject: UDF question -- make num a string I'm