Undo Last
Action
पिछली कार्रवाई वापस लाएं
|
Ctrl
+ Z
|
Redo Last
Action
अंतिम कार्रवाई फिर से करें
|
Ctrl
+ Y
|
Copy Selected
Cells
चयनित सेल कॉपी करें
|
Ctrl
+ C
|
Cut Selected
Cells
चयनित सेल कट करें
|
Ctrl
+ X
|
Paste from
Clipboard
क्लिपबोर्ड से पेस्ट करें
|
Ctrl
+ V
|
Repeat Last
Action
अंतिम कार्य दोहराएं
|
F4
|
Display Paste
Special Dialog Box
दिखाए - पेस्ट स्पेशल संवाद बॉक्स
|
Ctrl
+ Alt + V
|
Display Find
& Replace
दिखाएं - खोजें और बदलें
|
Ctrl
+ F
|
Display Find
& Replace, Replace Selected
दिखाएं खोजें और बदलें, चयनित बदलें
|
Ctrl
+ H
|
# VBA Code to Clear Cell :- To clear cells using VBA , use a statement with the following structure:- VBA का उपयोग :- सेल को साफ करने के लिए Cells.Clear VBA Statement Explanation Item: Cells. VBA Construct: Range object. Description: Range object representing the cells you want to clear. 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: Clear. VBA Construct: Range.Clear method. Description: The Range.Clear method clears the Range object you specify (Cells). Range.Clear clears the entire Range object, including values, formulas and formatting. VBA स्टेटमेंट स्पष्टीकरण 1. आइटम: सेल। VBA निर्माण: रेंज ऑब्जेक्ट। विवरण: रेंज ऑब्जेक्ट उन कोश...
Hello
ReplyDelete