RE: Library to convert week number to string? (cancel)

2005-10-20 Thread Eric Hoffman
Sorry, got it off of CFLIB. Sweet!! Thanks! -Original Message- From: Eric Hoffman [mailto:[EMAIL PROTECTED] Sent: Thursday, October 20, 2005 11:36 AM To: CF-Talk Subject: Library to convert week number to string? Does something like this exist and I am missing it...basically getting

Library to convert week number to string?

2005-10-20 Thread Eric Hoffman
Does something like this exist and I am missing it...basically getting datepart(ww, orderdate) for some graphing in SQL and would like in the cfoutput to have that converted to "week of" or "xx/yy - xx/yy". Thanks! Eric ~| Fin

RE: Number to String

2005-08-05 Thread Adkins, Randy
Without formatting: 10999 With Formatting: 10,999.00 -Original Message- From: Lee [mailto:[EMAIL PROTECTED] Sent: Friday, August 05, 2005 9:24 AM To: CF-Talk Subject: Re: Number to String On Thu, 4 Aug 2005 17:24:04 -0400 "Adkins, Randy" <[EMAIL PROTECTED]> wr

Re: Number to String

2005-08-05 Thread Lee
On Thu, 4 Aug 2005 17:24:04 -0400 "Adkins, Randy" <[EMAIL PROTECTED]> wrote: > Why not: > > VAL(vClickCost) + > VAL(vBindingCost) + VAL(vPackagingCost)> > > If I'm not mistaken that would take "9,999.00" and return 9. The error has stopped happening. I guessing it was a bad data thing. ~~

RE: Number to String

2005-08-04 Thread Adkins, Randy
Why not: -Original Message- From: Lee [mailto:[EMAIL PROTECTED] Sent: Thursday, August 04, 2005 4:53 PM To: CF-Talk Subject: Number to String This is making me crasy. I'm doing a bunch of conditional stuff using CFSET to add multiply a bunch of numbers for costing. The vari

RE: Number to String

2005-08-04 Thread Adrian Lynch
I'm sure something else is going on in your code. Can we see it? Ade -Original Message- From: Lee [mailto:[EMAIL PROTECTED] Sent: 04 August 2005 21:53 To: CF-Talk Subject: Number to String This is making me crasy. I'm doing a bunch of conditional stuff using CFSET to add

Number to String

2005-08-04 Thread Lee
This is making me crasy. I'm doing a bunch of conditional stuff using CFSET to add multiply a bunch of numbers for costing. The variables all stay numbers until I add them together like this. At that point if the number is greater than 999 the number adds a comma and turns into what ColdFusi

RE: Number to String?

2001-03-12 Thread Arden Weiss
- From: Bryan Love [SMTP:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 8:19 PM To: CF-Talk Subject: RE: Number to String? You won't find reference to integer-to-string conversions because they do not exist. Cold Fusion was designed and written as a typeless language. There i

RE: Number to String?

2001-03-12 Thread Bryan Love
ch 12, 2001 7:28 PM To: CF-Talk Subject: Number to String? Hello, Is it possible to convert a number to a string? For example, if I have the number 1 formatted as 0001 and I wanted to convert that to a string "0001" to then manipulate the '0's as characters. Is this possib

Re: Number to String?

2001-03-12 Thread Bryan Rieger
on 3/12/01 4:50 PM, Jim McAtee at [EMAIL PROTECTED] wrote: > I think either of the following should work: > > > > > OR > > > Jim, Thank you - I'll try these. Cheers, Bryan ~~ Structure your ColdFusion code with Fusebox. Get the offic

Re: Number to String?

2001-03-12 Thread Jim McAtee
I think either of the following should work: OR Jim -Original Message- From: Bryan Rieger <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Date: Monday, March 12, 2001 5:31 PM Subject: Number to String? >Hello, > >Is it possible to convert a number to a

Number to String?

2001-03-12 Thread Bryan Rieger
Hello, Is it possible to convert a number to a string? For example, if I have the number 1 formatted as 0001 and I wanted to convert that to a string "0001" to then manipulate the '0's as characters. Is this possible? I can go from strings to integers, but I don't seem to be able to go th