I have a stored procedure that I am trying to get a return value for each row of a query, and put it into its own column in my results.. I would like to dynamicaly pass it vars from two different columns, but it does not seem to accept anything except anything except manually entered strings..I would like to be able to do something like:select {call spGetDueDate(dateInfo.startDate,dateInfo.duration)} AS dueDate from dateInfofrom Query Analyzer.. Any ideas?as a side note the stored procedure works fine when I call it like so:{call spGetDueDate('3/8/2005',1)}