SAS INTCK Function We know that the INTCK is the default date function, and it helps in different real-world scenarios like calculating the individual’s age difference. Then we may use it to perform the employee tenure in the specific companies in which they worked over the years. The same...
Re: Continuous intck function not working Posted 04-16-2024 03:37 PM (860 views) | In reply to ballardw Thank you. Any idea as to another sas function that will let me exclude this case as within 12 months? I could also try using 365 days 0 Likes Reply ballardw Super User ...
Invalid argument to function INTCK('day' Posted 07-16-2019 11:23 AM (4733 views) Hello,This code has worked for me in the past, but not today. Can you please help suggesting what I'm doing wrong? The output dataset is blank because intck function isn't working properly.My code:...
Re: Invalid argument to function INTCK('day' Posted 07-16-2019 11:27 AM (4813 views) | In reply to AJ_Brien Looks like you have to convert letter date to an actual date value first like this data wow; set check; if intck('day',input(put(letter_date, 8. -l), yymmdd8.),...
How can I pass that date column into the INTCK function? I'm very new to sas. I also realize I can easily change the "%let t1, let t2, etc." lines into a macro but I ran into other issues with that. 0 Likes 1 ACCEPTED SOLUTION Tom Super User Re: INTCK Invalid Value in ...