Skip to main content
Skip table of contents

VBA: HideZeroColumns

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

Purpose

Hide columns that only have zero values for the provided range.

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

Syntax

CODE
objVelixo.HideZeroColumns [Range]

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

Arguments

Name

Description

Range

Required. Excel.Range to act upon.

Remarks

The HideZeroColumns method honors Excel's Application.DisplayAlerts flag.

If set to TRUE, HideZeroColumns behaves the same as when used from the toolbar (i.e. information, warning and errors will be displayed in message boxes).

If set to FALSE, all information messages will be suppressed and all warning and error messages will instead be returned as exceptions.

To reapply HideZeroColumns after data has changed see UnhideAll.

Example

Apply HideZeroColumns to a predefined range (rows 6 to 12 of sheet Sheet Name), without affecting current selection.

CODE
Dim velixoObj As Velixo_Reports.VBA
Set velixoObj = CreateObject("Velixo.Reports.Vba")

velixoObj.HideZeroColumns Range("'Sheet Name'!6:12")

JavaScript errors detected

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

If this problem persists, please contact our support.