Formula to get data from files

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
 
S

swatsp0p

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
 
Top