Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm creating a list box with values, based on distinct year from a ship date:
=distinct(year(ShipDate))
QV does not like this.
Hi,
if your shipdate in timestamp then,
Just write
Year(floor(ShipDate))
or
Year(ShipDate)
then List Box will show you only distinct value
Regards,
you can try this
distinct(year(date(shipdate)))
Hi Gerry,
if you want to calculate year in front end not in backend then
Directly you can write in list box expression
year(date).