I'm trying to learn smartsheet. Just to practice I create a simple grid with the data of my employee.
I have these columns :
First name (text), Last name (text), Birthday (date), Birthday current year (date), Full name (text), Two days before (checkbox)
The last three columns are column formulas :
Birthday current year =>
=IFERROR(DATE(YEAR(TODAY()), MONTH([Birthday]@row), DAY([Birthday]@row)), "")
Full name =>
=[First name]@row + " " + [Last name]@row
Two days before =>
=IFERROR(IF(AND([Birthday current year]@row <= TODAY(2), [Birthday current year]@row >= TODAY()), 1), 0)
Ok, so in page summary I created this formula :
=MIN(COLLECT([Birthday current year]:[Birthday current year], [Birthday current year]:[Birthday current year], >=TODAY()))
So far so good, everything seems to work, I have the next birthday in this cell...
But I now I want to have in another summary field, the full name of the employee of the previous birthday...
I can't make it work, could you point me in the right direction, please?
Just to let you know I translate manually my column name, so maybe I did some typo but everything is working fine...