Okay - that's much simpler. You confused us by using "total" in your original question.
The "last row" is a classic problem here. In a table, any row can be the last row - you have to decide which way to order the data, in order to know what is the "last row".
You seem to be looking for the most recent START_DT, rather than "the START_DT on the last row". This is the basic query:
SELECT MAX(START_DT)
FROM MyTable
Now you elaborate on MAX(START_DT), putting it inside DATEDIFF() with the proper parameter for days. You can use the GETDATE() function to get the current date.
That's it!