Breadcrumbs

VBA: WritebackCurrentWorksheet

Visual Basic for Applications macros are not supported by Excel Online.

Purpose

Imports the current Generic Writeback worksheet.

See Introduction to Velixo's VBA functions for general usage information.

Syntax

objVelixo.WritebackCurrentWorksheet


objVelixo - a variable that represents an instance of the Velixo VBA functions class.

Remarks

If Application.DisplayAlerts is set to FALSE, any message boxes will be suppressed and warnings and errors will be returned as exceptions. This is especially useful for a fully unattended automation. Once completed, set back DisplayAlerts to TRUE

Example

Dim velixoObj As Velixo_Reports.VBA

Set velixoObj = CreateObject("Velixo.Reports.Vba")

Application.DisplayAlerts = False

velixoObj.WritebackCurrentWorksheet

Application.DisplayAlerts = True