Hey Acoder,
Alrighty just wanted to make sure it be ok to do it that way. But i do have another problem which is going to affect doing the < - + 3% part.
Well i am trying to just output the cost for my company. The problem i am having is the way its outputting. If i do it this way it matching up the cost with the lastbuyquote (or where the cost should be) but instead of displaying the cost its displaying the lasbuyquote.
an then if i do it this way, it outputs the cost but it displays the same cost down the whole column an doesn't match up property so all i see is 45 all the way down.
Any suggestions on what i am doing wrong?
Thank you,
Rach
Alrighty just wanted to make sure it be ok to do it that way. But i do have another problem which is going to affect doing the < - + 3% part.
Well i am trying to just output the cost for my company. The problem i am having is the way its outputting. If i do it this way it matching up the cost with the lastbuyquote (or where the cost should be) but instead of displaying the cost its displaying the lasbuyquote.
Code:
<cfquery name="acompare" datasource="Configurator"> select Cost from dbo.[Master Parts List] where Cost = #matchmanu.lastbuyquote# </cfquery>
Code:
<cfquery name="acompare" datasource="Configurator"> select Cost from dbo.[Master Parts List] where lastbuyquote = Cost </cfquery>-
Thank you,
Rach
Comment