ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Automatic Printing (https://www.excelbanter.com/excel-programming/332253-automatic-printing.html)

neilwebb

Automatic Printing
 

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


Patrick Molloy[_2_]

Automatic Printing
 
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




All times are GMT +1. The time now is 12:46 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com