Insert Names Across Rows Using Macro,Open Sheet is in the Home Position,Export Camera Picture,Convert Dates- excel Tips
 Insert Names Across Rows Using Macro in excel    standard module     Sub Test()      Dim x As Worksheet      Application.DisplayAlerts = False      On Error Resume Next      Sheets("DataSheet").Delete      Names("Data").Delete      Application.DisplayAlerts = True      On Error GoTo 0      Sheets.Add().Name = "Datasheet"      Dim nm As Name      Dim i As Long      Dim avarSplit As Variant      Dim noPage As Variant      i = 1      Application.ScreenUpdating = False      With Sheets("DataSheet")      For Each nm In Names        .Cells(1, i) = nm.Name        .Cells(2, i) = "'" & nm.RefersTo        .Cells(3, i) = nm.Value        'noPage = Split( ?????        i = i + 1      Next nm      End With      Columns("A").Resize(, i).AutoFit    End Sub    '-    ' in workbook module edd:    Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)    Call Test    End Sub    '--      Code to The W...