Hi Bradley,
To format the month with 2 digits in your formula, you can use the
function. Here's how you can modify your formula:
- =IF(B2="","",YEAR(B2)&"-"&TEXT(MONTH(B2),"00")&"-"&($A$1+C2)&"AT")
The
function takes two arguments: the value you want to format, and the format you want to apply. In this case, we're using "00" as the format, which means to display the month with 2 digits, adding a leading zero if necessary.