Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9169529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:53:30+00:00 2026-06-17T15:53:30+00:00

Here is my code to output a query to a spreadsheet. <cfscript> //Use an

  • 0

Here is my code to output a query to a spreadsheet.

<cfscript> 
  //Use an absolute path for the files. ---> 
  theDir=GetDirectoryFromPath(GetCurrentTemplatePath()); 
  theFile=theDir & "getTestInv.xls"; 
  //Create an empty ColdFusion spreadsheet object. ---> 
  theSheet = SpreadsheetNew("invoicesData"); 
  //Populate the object with a query. ---> 
  SpreadsheetAddRows(theSheet,getTestInv);
</cfscript>

<cfset format = StructNew()>
<cfset format.dataformat = "#,###0.00">
<cfset SpreadsheetFormatColumn(theSheet,format,10)

<cfspreadsheet action="write" filename="#theFile#" name="theSheet" sheetname="getTestInv" overwrite=true>

The error I am getting is:

Invalid CFML construct found on line 125 at column 32.
ColdFusion was looking at the following text:

,

The CFML compiler was processing:

An expression beginning with /", on line 125, column 30.This message is usually caused by a problem in the expressions structure.
A cfset tag beginning on line 125, column 4.
A cfset tag beginning on line 125, column 4.

125: <cfset format.dataformat = "#,###0.00">

For some reason, it doesn’t like the comma, even though it is valid according to the documentation. If I take the comma out, it works, but I need it for the thousands grouping.

Anyone encountered this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T15:53:31+00:00Added an answer on June 17, 2026 at 3:53 pm

    In ColdFusion, the # is a reserved character. To escape it, you’ll have to double them up to escape them:

    <cfset format.dataformat = "##,######0.00">
    

    Silly that they didn’t account for this either in the documentation or followed ColdFusion’s formatting rules using 9s instead of #s.

    Here is my full working standalone test code:

    <cfset myQuery = QueryNew('number')>
    <cfset newRow = QueryAddRow(MyQuery, 2)> 
    <cfset temp = QuerySetCell(myQuery, "number", "349348394", 1)> 
    <cfset temp = QuerySetCell(myQuery, "number", "10000000", 2)> 
    
    <cfscript> 
      //Use an absolute path for the files. ---> 
      theDir=GetDirectoryFromPath(GetCurrentTemplatePath()); 
      theFile=theDir & "getTestInv.xls"; 
      //Create an empty ColdFusion spreadsheet object. ---> 
      theSheet = SpreadsheetNew("invoicesData"); 
      //Populate the object with a query. ---> 
      SpreadsheetAddRows(theSheet,myQuery,1,1);
    </cfscript>
    
    
    <cfset format = StructNew()>
    <cfset format.dataformat = "##,######0.00">
    <cfset SpreadsheetFormatColumn(theSheet,format,1)>
    
    <cfspreadsheet action="write" filename="#theFile#" name="theSheet" sheetname="theSheet" overwrite=true>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is the code i was trying.I could not comprehend the output i got.Why
Here is the code i wrote,when i execute the code,the terminal didn't output anything
Here is my upsert code: UPDATE LastTicket SET LastTicketNumber=LastTicketNumber+1 OUTPUT INSERTED.LastTicketNumber WHERE CategoryId='1'; IF
Here is the sample code, which produces interesting output: > gg<-data.frame(x=c(a,b),y=as.integer(c(1000,100000))) > gg x
I'm using cocoa JSON framework http://code.google.com/p/json-framework/ Here is the result of an JSON output
I'm trying to generate svg-Code in a web-application. Here's an example output: <?xml version=1.0
Ok, here's what I'm trying to do... given this razor code @using(Html.WriteLater()) { output
Ok the error is showing up somewhere in this here code if($error==false) { $query
Here's the tkprof output for a query that's running extremely slowly ( WARNING :
I cannot seem to get this query displayed properly. Here is the code: $select_stats

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.