Jan 16, 2001 #1 PDL IS-IT--Management Dec 11, 2000 36 US I have tried: SELECT Test, Replace(ItemName," ","_","ALL" AS Description in orer to get rid of SPACES in the contents of the variable ItemName. Keep getting errors. Any ideas?
I have tried: SELECT Test, Replace(ItemName," ","_","ALL" AS Description in orer to get rid of SPACES in the contents of the variable ItemName. Keep getting errors. Any ideas?
Jan 16, 2001 #2 GunJack ISP Dec 14, 2000 965 US I think you're just mising the # in your statement. Try this: SELECT Test, #Replace(ItemName," ","_","ALL"# AS Description Inside <cfquery> tags, all CF variables and functions need #s around them. Hope this helps, GJ Upvote 0 Downvote
I think you're just mising the # in your statement. Try this: SELECT Test, #Replace(ItemName," ","_","ALL"# AS Description Inside <cfquery> tags, all CF variables and functions need #s around them. Hope this helps, GJ