Sorry the function deveopers in SQL did not leave a way for this to be done in SQL with dateadd. The only was is to build the SQL string dynamically like so:
declare @datepart char(5)
SELECT @datepart = 'day'
EXEC ('select due_Date, time_span,
(dateadd(' + @datepart + ',10,due_date)) as plus10
from schedule')
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)