如何从SAS同一列中的不同行中减去日期/时间值

时间:2019-01-02 16:24:58

标签: sas calculated-columns subtraction

我在表中获得了这些值,我需要知道如何减去它们,从而用结果创建另一列。

19FEB2018:14:24:43.00
23MAR2018:12:57:58.00
28MAR2018:15:37:37.00
29JUN2018:10:30:33.00
29JUN2018:13:43:07.00

我需要的是

1- 0h
2- (23MAR2018:12:57:58.00 - 19FEB2018:14:24:43.00)
3- (...)

1 个答案:

答案 0 :(得分:3)

只需使用DIF()函数。

loan()

enter image description here