In pusedo code here is what I need: "Search FIELD in TABLE IF VALUE = "0" THEN CHANGE TO NEW VALUE "1" Suggestions appreciated Thanks Notting
"Search FIELD in TABLE IF VALUE = "0" THEN CHANGE TO NEW VALUE "1" <cftransaction <cflock timeout="5" throwontimeout="No" name="#session.sessionID#" type="EXCLUSIVE"> <cfquery name="whatever" datasource="DatabaseNAME" dbtype="ODBC"> UPDATE Tablename <cfif #fieldname# IS "0"> SET fieldname='1' </cfif> </cfquery> </cflock> </cftransaction> this could work but im not sure because i would need more info to be able to help you properly if your not using a database try <cfif field IS "0"> <cfset field="1"> </cfif>