Formula to get data from files

  • Thread starter Thread starter greasybob
  • Start date Start date
G

greasybob

I'm needing to list file names in column A, cell references in column B
and have the results in column C.
(Then when I change A or B, the C data will reflect the changes)
Thank
 
Assuming A1 contains "Filename.xls" and B2 contains "G123"

In cell C1, enter this formula:

=CONCATENATE(A1,B1) returns "Filename.xlsG123"

If you want to enter a space between entries, ...(A1," ",B1) returns
"Filename.xls G123"

copy this formula down as needed

HTH

swatsp0p
 

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