15

smartcid.itcs.hpe.com...Hewlett Packard Enterprise I-IPE Smart CID Log in to Your Account Customers / Partners IMPORTANT NOTIFICATION This notification is intended for Smart CID users

  • Upload
    others

  • View
    3

  • Download
    0

Embed Size (px)

Citation preview

Page 1: smartcid.itcs.hpe.com...Hewlett Packard Enterprise I-IPE Smart CID Log in to Your Account Customers / Partners IMPORTANT NOTIFICATION This notification is intended for Smart CID users
Page 3: smartcid.itcs.hpe.com...Hewlett Packard Enterprise I-IPE Smart CID Log in to Your Account Customers / Partners IMPORTANT NOTIFICATION This notification is intended for Smart CID users

1

2

3

4

5

6

7

Page 4: smartcid.itcs.hpe.com...Hewlett Packard Enterprise I-IPE Smart CID Log in to Your Account Customers / Partners IMPORTANT NOTIFICATION This notification is intended for Smart CID users

1

Page 7: smartcid.itcs.hpe.com...Hewlett Packard Enterprise I-IPE Smart CID Log in to Your Account Customers / Partners IMPORTANT NOTIFICATION This notification is intended for Smart CID users
Page 8: smartcid.itcs.hpe.com...Hewlett Packard Enterprise I-IPE Smart CID Log in to Your Account Customers / Partners IMPORTANT NOTIFICATION This notification is intended for Smart CID users
Page 9: smartcid.itcs.hpe.com...Hewlett Packard Enterprise I-IPE Smart CID Log in to Your Account Customers / Partners IMPORTANT NOTIFICATION This notification is intended for Smart CID users

3

Page 10: smartcid.itcs.hpe.com...Hewlett Packard Enterprise I-IPE Smart CID Log in to Your Account Customers / Partners IMPORTANT NOTIFICATION This notification is intended for Smart CID users
Page 11: smartcid.itcs.hpe.com...Hewlett Packard Enterprise I-IPE Smart CID Log in to Your Account Customers / Partners IMPORTANT NOTIFICATION This notification is intended for Smart CID users

4

Data Uploaded Successfully

Page 12: smartcid.itcs.hpe.com...Hewlett Packard Enterprise I-IPE Smart CID Log in to Your Account Customers / Partners IMPORTANT NOTIFICATION This notification is intended for Smart CID users

5

Page 13: smartcid.itcs.hpe.com...Hewlett Packard Enterprise I-IPE Smart CID Log in to Your Account Customers / Partners IMPORTANT NOTIFICATION This notification is intended for Smart CID users

6

Sub All_Cells_In_All_Worksheets_1()

Dim sh As Worksheet

For Each sh In ActiveWorkbook.Worksheets

sh.Select

With sh.UsedRange

.Cells.Copy

.Cells.PasteSpecial xlPasteValues

.Cells(1).Select

End With

Application.CutCopy() = False

Next sh

End Sub

Sub All_Cells_In_All_Worksheets_2()

Dim sh As Worksheet

For Each sh In ActiveWorkbook.Worksheets

With sh.UsedRange

.Value = .Value

End With

Next sh

End Sub

|

Page 14: smartcid.itcs.hpe.com...Hewlett Packard Enterprise I-IPE Smart CID Log in to Your Account Customers / Partners IMPORTANT NOTIFICATION This notification is intended for Smart CID users