Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() HELP!!!!! I want to be able to automatically print a label from excel when input data. the data will be sent to excel automatically from a software packag called winwedge. once this data arrives in excel i need excel to do three things wit it. firstly, i need it to log this data with all the other data to for graphs - this isnt a problem. secondly, i need excel to take a copy of this data and paste it into pre defined area ready to print. and thirdly, once the information is inpuuted into the predefined area i need it to print automatically. this seems unlikely to me, but im sure there is someone out there wh can tell me if it is possible or not?????? many thanks nei -- neilweb ----------------------------------------------------------------------- neilwebb's Profile: http://www.excelforum.com/member.php...fo&userid=2445 View this thread: http://www.excelforum.com/showthread.php?threadid=38046 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
if your data in in a range named 'Source' and th eprint table is called
'Target' then Sub Main() dim rSource as Range ' copy the data SET rSource = Range("Source") With Range("Target").Resize(rSource.Rows.Count,rSource. Columns.Count) .Value = rSource.Value End With ' now print it rSource.PrintOut End Sub "neilwebb" wrote: HELP!!!!! I want to be able to automatically print a label from excel when i input data. the data will be sent to excel automatically from a software package called winwedge. once this data arrives in excel i need excel to do three things with it. firstly, i need it to log this data with all the other data to form graphs - this isnt a problem. secondly, i need excel to take a copy of this data and paste it into a pre defined area ready to print. and thirdly, once the information is inpuuted into the predefined area, i need it to print automatically. this seems unlikely to me, but im sure there is someone out there who can tell me if it is possible or not?????? many thanks neil -- neilwebb ------------------------------------------------------------------------ neilwebb's Profile: http://www.excelforum.com/member.php...o&userid=24450 View this thread: http://www.excelforum.com/showthread...hreadid=380468 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
automatic date when printing | Excel Discussion (Misc queries) | |||
Automatic printing | Excel Discussion (Misc queries) | |||
automatic printing | Excel Worksheet Functions | |||
automatic printing | New Users to Excel | |||
automatic printing | Excel Worksheet Functions |