This function will return the date from the year and the day of the year.
Names Default To Here( 1 );
yd_date = Function( {year, day}, {default local},
dat = Format( In Years( year - Year( 0 ) ) + In Days( day ), "d/m/y" );
Return( dat )
);
the_date = yd_date( 2025, 75 );
//"16/03/2025"