Vlookup all in one

  • Thread starter Thread starter Al
  • Start date Start date
A

Al

I have a database with dates in the first column and
formulas in the rest of the columns to the left.

How can i create a formula that will give me the date in
the first column if there is data to the right of the date.

Appreciate the help in advance.

Al
 
Hi Al,

I'm a bit confused with your post but will take a stab at it. I will assume
you have dates in the "first" column and I will call that column A. Now,
there can be no columns to the left of column A so I will further assume you
meant columns to the right as you indicated in the second paragraph.

So, with dates in A and data in B, C and D, try this formula in E and fill
down.

=IF(A1<>0,B1&" "&C1&" "&D1,"")

HTH
Regards,
Howard
 
You want it to look empty until you type something in B:IV of that row?

=if(counta(b1:iv1)=0,"",today())

(format as a date)
 
=if(counta(b1:iv1)=0,"",today())
I have a database with dates in the first column and
formulas in the rest of the columns to the left.

How can i create a formula that will give me the date in
the first column if there is data to the right of the date.

Appreciate the help in advance.

Al
 

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

Back
Top