Reputation: 1
Ex. Order Day "1" Order Month "Jan" Order Year "2020"
Required Date: 1 JAN 2020
Upvotes: 0
Views: 29
Reputation: 26218
Let's assume your data is
order date full
with the following calculationDATE(DATEPARSE("dd:MMM:yyyy", [order date] + ':' + [order month] + ':' + [order year]))
get results like this
Upvotes: 0
Reputation: 1444
If each of these are separate fields, I would build a text version of the date and wrap it in the DATE()
function, but there are probably a dozen ways to do it differently.
DATE( [OrderYear] + "-" + [OrderMonth] + "-" + [OrderDay] )
Upvotes: 1