Skip to main content

Excel Test : Basic Excel Introduction

Click on link & Ready for Excel Test


https://goo.gl/forms/RHtoolKSnfHW3au03

Comments

Post a Comment

Your advice or suggestions will be much appreciated and welcomed....

Popular posts from this blog

What is Excel ? рдПрдХ्рд╕ेрд▓ рдХ्рдпा рд╣ै ?

Excel is a spreadsheet application which have rows and columns to organize data. We can easily organize and analysis data in excel. рдПрдХ्рд╕ेрд▓ рдПрдХ рд╕्рдк्рд░ेрдбрд╢ीрдЯ рдПрдк्рд▓िрдХेрд╢рди рд╣ै рдЬिрд╕рдоें рдбेрдЯा рд╡्рдпрд╡рд╕्рдеिрдд рдХрд░рдиे рдХे рд▓िрдП рдкंрдХ्рддिрдпां рдФрд░ рдХॉрд▓рдо рд╣ैं। рд╣рдо рдПрдХ्рд╕ेрд▓ рдоें рдЖрд╕ाрдиी рд╕े рдбेрдЯा рд╡्рдпрд╡рд╕्рдеिрдд рдФрд░ рд╡िрд╢्рд▓ेрд╖рдг рдХрд░ рд╕рдХрддे рд╣ैं।

VBA Code to Clear Cells with Zero рд╢ूрди्рдп рдХे рд╕ाрде рд╕ेрд▓ рдХो рд╕ाрдл़ рдХрд░рдиे рдХे рд▓िрдП VBA рдХोрдб

# VBA Code to Clear Cells with Zero:- To  clear cells with zero within a cell range using VBA , use a macro with the following statement structure: рд╢ूрди्рдп рдХे рд╕ाрде рд╕ेрд▓ рдХो рд╕ाрдл़ рдХрд░рдиे рдХे рд▓िрдП VBA рдХोрдб For   Each   Cell  In   Range If   Cell.Value = myValue  Then   Cell.Clear Next   Cell VBA Statement Explanation Lines #1 and #3: For Each Cell In Range | Next Cell Item:  For Each… In… Next. VBA Construct:  For Each… Next statement. Description:  The For Each… Next statement repeats the statement within the loop (line #2) for each element (Cell) in the cell range (Range) you want to search for zeroes in. Item:  Cell. VBA Construct:  Element of the For Each… Next statement and object variable of the Range object data type. Description:  The Element of the For Each… Next statement is an object variable used to iterate through the elements (Cell) of the cell range (Range) you want to sear...

VBA Coding : For Sharing data by Email With Attachment using Excel data in other Place

' We have some data in Excel that we want to share by email with attachment рд╣рдоाрд░े рдкाрд╕ Excel рдоें рдХुрдЫ рдбेрдЯा рд╣ैं рдЬिрди्рд╣ें рд╣рдо рдЕрдиुрд▓рдЧ्рдирдХ рдХे рд╕ाрде рдИрдоेрд▓ рдж्рд╡ाрд░ा рд╕ाрдЭा рдХрд░рдиा рдЪाрд╣рддे рд╣ैं Sub For_GSTR3B_Report_Share() Dim sWorkbook1 As Workbook Dim wb As Workbook Dim objApp As Object  'For New Workbook Dim ws As Worksheet Dim savepath As String         'Delete all file from folder temp2         On Error Resume Next         Kill "C:\Users\PRAMOD.GARG\Desktop\pk_temp*.*"         On Error GoTo 0               On Error Resume Next         Set wb = Workbooks("Pkgarg_Control_Sheet_With_Gaurav_Coding.xlsm")         On Error GoTo 0         If Not wb Is Nothing Then         MsgBox "It's open"         wb.Activate         Worksheets("For_GSTR3B_Report_Share...