Great ... but you haven't told us what you do see so we can compare it to the expected output. We need that.
As a potential source of problems, your syntax is wrong here:
Date_Diff = Col1_Date - Col2.Date;
It should say
Date_Diff = Col1_Date - Col2_Date;
... View more