View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.misc
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default Cheating With Printing

Hi Matthew

http://www.amazon.com/gp/product/0764540726
Or choose the 2007 version from John.

And visit the newsgroups and search in al old postings
You can use my Google add-in if you want
http://www.rondebruin.nl/Google.htm

Have fun


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Matthew" wrote in message ups.com...
On 31 Jul, 19:51, "Ron de Bruin" wrote:
You can use this
I use a sheet named "ShopSheet" where we copy the value in and print

Sub test()
Dim cell As Range
For Each cell In Range("centres").SpecialCells(xlCellTypeConstants)
With Sheets("ShopSheet")
.Range("A1").Value = cell.Value
.Calculate
.PrintOut
End With
Next cell
End Sub

--

Regards Ron de Bruinhttp://www.rondebruin.nl/tips.htm

"Matthew" wrote in oglegroups.com...
On 31 Jul, 19:33, "Ron de Bruin" wrote:
Hi Matthew


Do you have a list in a excel sheet with all numbers or are they simple number 1 to 656


--


Regards Ron de Bruinhttp://www.rondebruin.nl/tips.htm


"Matthew" wrote in glegroups.com...
What I want to do is;


I have a spread sheet with 656 different 'shops' each with different
budgets.


Using vlookup etc I have made a sheet where you type the shop id
number in a1 and it brings all the data up for that shop.


What i would love to be able to do is to have a little macro that
would print all the sheets by entering the shop id into a1 for me.


The shops id number are all 3 digit numbers.


Thanks in advance


Matthew


They are in the workbook, in a range named centres


Ron,
You wiz, I must get a book on this, any recommendation for starter/
intermediate ?


Thanks It worked a Treat.

Matthew