Posts by patel

    Re: Arrange Scattered rows value to underneath appropriate columns heading


    try this code

    Re: Save Workbook with a filename that includes the sum of values in a column


    Re: Generating current date in multiple sheets for one specific cell


    For more sheets

    Code
    Private Sub CommandButton1_Click() 
        Dim RowThreeLastColumn , mySheets As Sheets
    Set mySheets = Worksheets(Array("Name1", "Name3"))
    For Each sh In mySheets
       With sh 
          RowThreeLastColumn = .Cells(3, .Columns.Count).End(xlToLeft).Column 
         .Cells(3, RowThreeLastColumn + 1) = Format(Now, "dd/mm/yyyy") 
       End With 
    next
    End Sub

    Re: Generating current date in multiple sheets for one specific cell


    Code
    Private Sub CommandButton1_Click()
    Dim RowThreeLastColumn
    set ThisWorksheet = sheets(3)
    with ThisWorksheet
       RowThreeLastColumn = .Cells(3, .Columns.Count).End(xlToLeft).Column
       .Cells(3, RowThreeLastColumn + 1) = Format(Now, "dd/mm/yyyy")
    end with
    End Sub

    Re: Insert missing rows with time and data


    Re: Insert missing rows with time and data


    Re: split string in multiple columns and transpose them