# VBA Code to Clear Cell Formatting:- To clear cell formatting using VBA , use a statement with the following structure:- VBA का उपयोग करके सेल फ़ॉर्मेटिंग को साफ़ करने के लिए Cells.ClearFormats VBA Statement Explanation Item: Cells. VBA Construct: Range object. Description: Range object representing the cells where you want to clear cell formatting. You can usually return a Range object with constructs such as the Worksheet.Range, Worksheet.Cells (with Range.Item), Range.Offset, Range.Resize or Application.ActiveCell properties. If you explicitly declare an object variable to represent Cells, use the Range object data type. Item: ClearFormats. VBA Construct: Range.ClearFormats method. Description: The Range.ClearFormats method clears the formatting of the Range object you specify (Cells). Range.ClearFormats doesn't clear values or formulas. VBA स्टेटमेंट स्पष्टीकरण 1. आइटम: सेल। VBA निर्माण: ...