Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
For Row = 1 To MyRange.Rows.Count
Sess0.Screen.PutString xlSheet.Cells(Row, "A").Value, 3, 22
Sess0.Screen.PutString xlSheet.Cells(Row, "B").Value, 12, 10
Sess0.Screen.SendKeys "<ENTER>"
Sess0.Screen.WaitHostQuiet(g_HostSettleTime)
Next Row
In Excel HELPCopy Method
Applies To Objects
Area, Screen
Description
Copies the current selection to the Clipboard.
Syntax
object.Copy
Element Description
object The Area or Screen object.
Comments
To copy data from an Area or Screen object, you must first select the object with the Select method. (For the Screen object, you can also use the SelectAll method.)
Copyright 1996 - 1999, Attachmate Corporation. All rights reserved.
Copy Method
Copy method as it applies to the ChartArea object.
Copies a picture of the point or series to the Clipboard.
expression.Copy
expression Required. An expression that returns one of the above objects.
Copy method as it applies to the Range object.
Copies the Range to the specified range or to the Clipboard.
expression.Copy(Destination)
expression Required. An expression that returns one of the above objects. Destination Optional Variant. Specifies the new range to which the specified range will be copied. If this argument is omitted, Microsoft Graph copies the range to the Clipboard.
Example
This example copies the formulas in cells A14 on the datasheet into cells E5:H8.
Set mySheet = myChart.Application.DataSheet
mySheet.Range("A14").Copy _
Destination:= mySheet.Range("E5")