Skip to main content
Skip table of contents

VBA commands for NX: WritebackWorksheetAsync

Visual Basic for Applications macros are supported in Excel Desktop for Windows only.

Description

Asynchronous command that imports the provided Writeback worksheet.

See Introduction to Velixo NX VBA commands for general usage information.

Syntax

CODE
objVelixo.WritebackWorksheetAsync Worksheet


objVelixo - A variable that represents an instance of the Velixo_NX_Tools.Vba command class.

Arguments

Name

Required / Optional

Description

Worksheet

Required

Excel.Worksheet value that provides the Writeback worksheet to import.

Example

CODE
Dim velixoObj As Velixo_NX_Tools.VBA
Dim WritebackWorksheet As Excel.Worksheet
Dim currentWorkbook As Excel.Workbook

Set velixoObj = CreateObject("Velixo.NX.Tools.Vba")

Application.DisplayAlerts = False

Set currentWorkbook = Application.ActiveWorkbook
Set WritebackWorksheet = currentWorkbook.Worksheets("Writeback")

velixoObj.WritebackWorksheetAsync WritebackWorksheet

Application.DisplayAlerts = True

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.