This post was brilliant and exactly what I needed for my situation...
However, I need the mergesheet to automatically format the columns so that
the data fits into the cells.. right now it's all scrunched up - so,
everytime I run the macro to update it - I would have to re-format/add column
headings to the mergesheet when I would rather it do it as part of the macro
run...
I also wonder if it's possible for it to automatically add
calculation/formula based on the data on the "new" mergesheet?
Again, this forum has been so immensely helpful and all of the people who
share their knowledge and time are to be highly commended!!
Thank you in advance
Do you use this example now ?
http://www.rondebruin.nl/summary.htm
Add one line above the start row line
'Add headers
Newsh.Range("A1:D1").Value = Array("header1", "header2", "header3", "header4")
'The links to the first sheet will start in row 2
RwNum = 1
It autofit the columns with this line
Newsh.UsedRange.Columns.AutoFit

Signature
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
> This post was brilliant and exactly what I needed for my situation...
> However, I need the mergesheet to automatically format the columns so that
[quoted text clipped - 58 lines]
>> >> > End Sub
>> >> > Thanks in advance!
graloe - 23 May 2007 19:18 GMT
Just in case I continue to have email problems!
I am using your example http://www.rondebruin.nl/copy2.htm (modified to copy
just values/formats)....
Will the below code still work in that example? If yes, could you let me
know where I should put it?
> Do you use this example now ?
> http://www.rondebruin.nl/summary.htm
[quoted text clipped - 72 lines]
> >> >> > End Sub
> >> >> > Thanks in advance!
Ron de Bruin - 23 May 2007 19:30 GMT
I reply to you private with a example

Signature
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
> Just in case I continue to have email problems!
>
[quoted text clipped - 80 lines]
>> >> >> > End Sub
>> >> >> > Thanks in advance!