Workbook Data Into One Single Sheet,Sort Alphabetically ,Row column height width manipulation -MS Excel
 Workbook Data Into One Single Sheet using MS Excel    If you have 10 workbook each workbook have single sheet of data (tab name should be anything)  if you need consolidation sheet into all 10 workbook into one then you can do this with code use below mention code and your work will done .    Sub test()    Dim FS, Fle, FLDR, fles    Dim Fletype As Variant    Set FS = CreateObject("scripting.filesystemobject" ;)    Dim intLstrow As Integer    Dim intLstcol As Integer    Dim dlgDialoge As FileDialog    Dim srcsheet As Worksheet    Dim wk As Workbook    'Set dlgDialoge = Application.FileDialog(msoFileDialogFolderPicker)    Set wk = ThisWorkbook    Set FLDR = FS.getfolder(BrowseFolder)    Set fles = FLDR.Files    For Each Fle In fles    Fletype = Split(Fle.Name, ".")    If (Fletype(UBound(Fletype)) = "xls" Or Fletype(UBound(Fletype)) =    "xlsx") Then    Set srcsheet = Workbooks.Open(Fle.path).Worksheets(1)    intLstrow = srcsheet.Range(...