Syntax

expression.FileFormat

expression A variable that represents a Workbook object.

Remarks

Some of these constants may not be available to you, depending on the language support (U.S. English, for example) that you've selected or installed.

Example

This example saves the active workbook in Normal file format if its current file format is WK3.

Visual Basic for Applications
If ActiveWorkbook.FileFormat = xlWK3 Then ActiveWorkbook.SaveAs fileFormat:=xlNormal End If
declaring variables file file format fileformat FileFormat property

See also: