No need to call SP.A Trigger could do that.But you can create your table with column that is computing its value automatic.Don't know the english word for that...maybe computed column.See this example:create table test( [Suggested_Sell_Price] money, [Cost] as isnull(Suggested_Sell_Price,0) * 0.75) insert test([Suggested_Sell_Price])select 10.00 unionselect 99.59 select * from testdrop table test--Output:Suggested_Sell_Price Cost--------------------- ---------------------------------------10,00 7.50000099,59 74.692500(2 row(s) affected)
Webfred
No, you're never too old to Yak'n'Roll if you're too young to die.