Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Update your Profile with your Support type to get your Support Type badge.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Uncover the power of data with the Analytics Hub —your ultimate guide to mastering NetSuite Saved Searches and Reports. Simplify the complex and unlock your organization's true potential. Dive into the Analytics Hub now and soar to new heights!
To help you get the most out of your 2025.2 Release Preview account, review the topics outlined in the 2025.2 Release Preview Guide.
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
Formula(date/time)
I'm trying to write a formula for the date.
GROUP {trandate}
12/9/2013
12/10/2013
12/11/2013
12/12/2013
i want it to look like this, if {trandate} matches {today} i want to add the time at the end. so that they know this report for 12/12/2013 isn't the complete day.
12/9/2013
12/10/2013
12/11/2013
12/12/2013 10:00AM (grab today's time)
Formula(Numeric)
CASE WHEN to_char({trandate},'MM/DD/YYYY')=to_char({today},'MM/DD/YYYY') THEN to_char({today},'MM/DD/YYYY HH:MI') ELSE to_char({trandate},'MM/DD/YYYY') END
It's not recognizing 'MM/DD/YY HH:MI'
a formula something like this, but mine doesn't work.
0