I am dynamically creating a table using the cfscript spreadsheet method.
i.e.
<cfscript> downloadDoc = spreadsheetNew("spreadSheetName"); spreadsheetAddRow(downloadDoc,"spreadsheetCols"); .... </cfscript>
One of the columns I'm building contains a formula showing the percentage difference between the values โโthat the user enters in an empty column and the current value (which is in another column).
The user I create for this asked to add conditional formatting to change the color of the formula cell based on the value (i.e. if the change exceeds 20% or less than -20%, the cell should be red). Since one of the values โโthat affects the formula is entered by the user, the color change should occur in Excel, not in my function.
Easy in Excel, just not sure how to do this in an Excel file created by cfml. 
My question is: does anyone know if this is possible using cfml (or via cfscript or the cfspreadsheet tag) and how to do it?
I could not find something on Google, and the cfdocs.org search did not change anything.
source share