We are trying to pull data for year end analysis and have a case statement working inside of results of a netsuite search that normally utilizes a calculation using {today} within the formula. However, since we want to view the results as if "today" was actually "12/31/2016", what would we need to do to change the following?:
CASE WHEN {today} - {mql_date} < 366 THEN 'Marketing' ELSE CASE WHEN {today} - {sql_date} < 366 THEN 'Sales Dev Team' ELSE 'SALES' END END