SAS 全球日期比较 [英] SAS Global date comparison

查看:27
本文介绍了SAS 全球日期比较的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试进行日期比较,但没有得到正确的结果.有谁知道这是怎么回事?

I'm trying to do a date comparison but I'm not getting the correct results. Does anyone know what's going on?

%macro ttt;
    %let check_start = 28APR2014;
    %if "&check_start."d < "25may2014"d %then %let true = 1;
    %else %if "&check_start."d > "25may2014"d %then %let true = 2;
    %put &true;
%mend;
%ttt;

14         %macro ttt;
15          %let check_start = 28APR2010;
16          %if "&check_start."d < "25may2014"d %then %let true = 1;
17          %else %if "&check_start."d > "25may2014"d %then %let true = 2;
18          %put &true;
19          %mend;
20          %ttt;
true = 2

宏变量true应该等于1

Macro-variable true should equal 1

推荐答案

在这种情况下,您需要使用 %sysevalf() 来评估比较.以下作品.

You need to use %sysevalf() to evaluate the comparison in this case. The following works.

%macro ttt;
    %let check_start = 28APR2015;
    %if %sysevalf("&check_start"d < '25may2014'd) %then %let true=1;
    %else %if %sysevalf("&check_start."d > '25may2014'd) %then %let true=2;
    %put &true.;
%mend;
%ttt;

这篇关于SAS 全球日期比较的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆