Concatenate errors

G

Guest

I use a form that includes lookup tables. one of the lookup tables contains
financial accounting dates, e.g.,week 1 on lu table is 01/03/05 and 01/07/05
then 7 day intervals thru week 52.

When I try to use "&" in combination with the lookup, I get the date
returned as a serial number. For example vlookup(week,weeknumber,2)&"thru
"vlookup(weeknumber,3).

The dates table was regular dates format, then copy/paste special/values.

What am I doing wrong?
 
J

JE McGimpsey

One way:

=TEXT(VLOOKUP(week,weeknumber, 2),"mm/dd/yy") & " thru " &
TEXT(VLOOKUP(week, weeknumber, 3), "mm/dd/yy")
 

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