Gotcha.. Dont know if this will work but it is worth a try..
<cfset newNum#i# = ANNUALWRITTENPREMIUM#i# / 4.3> <cfoutput>#newNum##i#</cfoutput> On Fri, 09 Jun 2006 09:24:08 -0400, Torrent Girl wrote > Well the var ANNUALWRITTENPREMIUM is concatentated by a number with > a loop > > So the outcome is of #Evaluate(ANNUALWRITTENPREMIUM & i)# is > > ANNUALWRITTENPREMIUM1 > ANNUALWRITTENPREMIUM2 > ANNUALWRITTENPREMIUM3.... > > I need to divide each of those instances by 4.3 to get the weekly > number that also need to have the same format: > > weeklyWRITTENPREMIUM1 > weeklyWRITTENPREMIUM2 > weeklyWRITTENPREMIUM3.... > > >If all you are trying to do is divide it why not use > > > ><cfset newNum = ANNUALWRITTENPREMIUM / 4.3> > ><cfoutput>#newNum#</cfoutput> > > > >On Fri, 09 Jun 2006 09:09:37 -0400, Torrent Girl wrote > >> > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Message: http://www.houseoffusion.com/lists.cfm/link=i:15:1866 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/15 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:15 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
