Workfront fusion Entry Date correct format under filter condition
Hi Guys,
How to write the correct format for Entry date under filter condition?

This is my current format but it wont pass to it.

Thanks,
Hi Guys,
How to write the correct format for Entry date under filter condition?

This is my current format but it wont pass to it.

Thanks,
Hi
From your screenshots:
entryDate coming from Workfront is a Date/Time value like2026-02-26T09:47:21.884Z (ISO 8601)formatDate(now; YYYY-MM-DD).There are two issues:
The format argument must be in quotes.
Fusion’s date/time functions expect the format pattern as a string, e.g. 'YYYY-MM-DD'
Function overview.
Equality on a full Date/Time vs a date-only string will never match.entryDate has a time component; formatDate(now; 'YYYY-MM-DD') returns only the date text (e.g. 2026-02-26). Even if the syntax is correct, those values won’t be equal as dates.
If you just want to fix the syntax of what you have now, change the right side to:
Copy
formatDate(now; 'YYYY-MM-DD')
So your filter would read:
5. entryDateEqual toformatDate(now; 'YYYY-MM-DD')This makes the function valid, but on its own it still won’t pass bundles, because of the time issue.
To reliably get records whose entryDate is today, you have two common patterns:
Use Date operators and set a range from the start of today to the start of tomorrow:
First condition
Field: 5. entryDate
Operator type: Date operators
Operator: Greater than or equal to
Value (expression):
Copy
parseDate(formatDate(now; 'YYYY-MM-DD'); 'YYYY-MM-DD')
Second condition (AND)
Field: 5. entryDate
Operator type: Date operators
Operator: Less than
Value (expression):
Copy
addDays(
parseDate(formatDate(now; 'YYYY-MM-DD'); 'YYYY-MM-DD');
1
)
This keeps any entryDate between today at 00:00 and tomorrow at 00:00.
If you prefer to stay in Text operators, compare the formatted entry date to today’s date:
Change the left side to an expression (if your UI allows expression mapping) like:
Copy
formatDate(5.entryDate; 'YYYY-MM-DD')
Operator type: Text operators → Equal to
Right side:
Copy
formatDate(now; 'YYYY-MM-DD')
This converts both sides to a plain YYYY-MM-DD string before comparing.
Fusion filters are designed exactly for these “field vs expression” comparisons
Use filters.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.