Concatenate

L

LWilson

I'm using the Concatenate function to return a date. My problem is that for
days that have single digits, I need it to be 01, 02, etc. How can I make
this work. Here is my formula:

IF(LEFT(T$19,2)="FY",S$20,IF(LEFT(T$19,2)="CY",S$20,IF(VLOOKUP(RIGHT(T$19,3),$I$25:$J$41,2,FALSE)=MONTH($K$44),CONCATENATE(T$19,".",DAY($K$44)),EVTIM($D$79,CONCATENATE(EVTIM($C$17,T$19,1),".","01"),-1))))

Thank you for any help you can provide.
 
T

Teethless mama

My problem is that for days that have single digits, I need it to be 01,
02, etc

=TEXT(DAY($K$44),"00")
 
L

LWilson

I believe this will work, but I'm having trouble determining where in my
formula it should go? I feel like an idiot. LOL! Thanks in advance for your
help!
 
J

Jacob Skaria

What "Teethless mama" has suggested is to replace

DAY($K$44)

with

TEXT(DAY($K$44),"00")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top