You need to sign in to do that
Don't have an account?
João Barreto 4
Formula - TEXT(MONTH( Birthdate ))
This formula return the number of the month but, if it is in january it will only return "1" and i need the "01".
Can anyone help? thanks in advance!!
Can anyone help? thanks in advance!!
if(MONTH( Birthdate )<10, '0'+TEXT(MONTH( Birthdate )),TEXT(MONTH( Birthdate )))
I found out latter a way to do with a CASE()... Just imagine how big is the formula:
CASE(TEXT(MONTH(Birthdate )), "1","01","2","02","3","03","4","04","5","05","6","07","8","08","9","09","10","10","10","11","12","12", "")