Can you upload the workbook where my formula returns "05"? The formula will return "16" as long as this year's date value is stored in A1 (i.e. Today()).
Can you upload the workbook where my formula returns "05"? The formula will return "16" as long as this year's date value is stored in A1 (i.e. Today()).
Ah, you entered =TEXT(YEAR(B1),"yy")
You don't need YEAR(B1) part. Just enter =TEXT(B1,"yy")
By nesting YEAR(B1) formula becomes =TEXT(2016, "yy")
2016 is taken as Date value (not year) by TEXT function.
Which is interpreted as 7/8/1905, thus returning "05".