BookmarkSubscribeRSS Feed
c4th1
Fluorite | Level 6

Hi, I am trying to do new calculated item in the Report Designer to calculate 'now() - timestamp' to give a total number of days. Can someone please advise how do I do the calculation. And how to show the result in numeric?

 

Thank you.

2 REPLIES 2
MikeJenista
SAS Employee

It is a little cumbersome, but you can use the DayOfYear and Year functions to return numeric values from the two dates ('now' and 'timestamp').  Also you have to wrap 'Now()' in a DatePart() function:

 

 

365*( Year(DatePart( Now() )) - Year( timestamp ) + DayOfYear( DatePart( Now() )) - DayOfYear( timestamp )

MikeJenista
SAS Employee

I checked if a simpler calculation would work:

 

DatePart( Now() ) - timestamp

 

But it did not.  I think this is because the underlying SAS date value is not a supported format for VA content, but I can check on it with some folks I know in development.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

Tips for filtering data sources in SAS Visual Analytics

See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 714 views
  • 0 likes
  • 2 in conversation