giam kich thuoc file

Upload: tranhungdao12a3

Post on 03-Apr-2018

220 views

Category:

Documents


0 download

TRANSCRIPT

  • 7/28/2019 Giam Kich Thuoc File

    1/7

    y l rut ca CT ny Mi cc bc mxPHP Code:Option ExplicitPublic wsSheet As WorksheetPublic iReply As IntegerPublic rLastRow As Range

    Public rlastCol As RangePublic bCalc As BooleanPublic strCleanType As StringPublic bSaveCopy As BooleanPublic OldSize As String, NewSize As StringDim strName As StringDim fs, f, sSub CleanUpFull()

    On Error Resume NextApplication.EnableEvents = False

    If bSaveCopy = True Then Run "SaveCopyAs"

    bCalc = Application.Calculation = _xlCalculationAutomatic

    If bCalc = True Then Application.Calculation = _xlCalculationManual

    For Each wsSheet In ActiveWorkbook.WorksheetswsSheet.ShowAllDataWith wsSheet.Cells

    .SpecialCells(xlCellTypeBlanks).Clear

    Set rLastRow = .Find(What:="*", After:=.Cells(1, 1), LookIn:=xlFormulas, _

    searchOrder:=xlByRows, SearchDirection:=xlPrevious).Offset(1, 1)

    Set rlastCol = .Find(What:="*", After:=.Cells(1, 1), LookIn:=xlFormulas, _

    searchOrder:=xlByColumns, SearchDirection:=xlPrevious).Offset(1, 1)

    End With

    wsSheet.Range(rLastRow.EntireRow, _rLastRow.EntireRow.End(xlDown)).Clear

    wsSheet.Range(rlastCol.EntireColumn, _rlastCol.EntireColumn.End(xlToRight)).Clear

    Application.CutCopyMode = FalseActiveSheet.UsedRange

    Next wsSheet

    Application.EnableEvents = TrueIf bCalc = True Then Application.Calculation = xlCalculationAutomatic

    If bSaveCopy = True ThenActiveWorkbook.SaveSet fs = CreateObject("Scripting.FileSystemObject")

  • 7/28/2019 Giam Kich Thuoc File

    2/7

    Set f = fs.Getfile(ActiveWorkbook.FullName)

    NewSize = UCase(f.Name) & " uses " & f.Size & " bytes."MsgBox "Procedure has finished." & Chr(13) & Chr(13) & OldSize & Chr(

    13) & Chr(13) & NewSize & Chr(13) & Chr(13) & "If the file size has increased, your Workbook is most likely corrupt. Restart the 'File Clean' and click the 'In case of corruption click here' button.", vbInformation, "OzGrid.com"

    Run "KillVar"Exit Sub

    End If

    Run "KillVar"MsgBox "Procedure has finished, you will need to " _

    & "save and then note if the file size has reduced via File>Properties / General" _

    & Chr(13) & Chr(13) & "If the file size has increased, your Workbookis most likely corrupt. Restart the 'File Clean' and click the 'In case of corruption click here' button.", vbInformation, "OzGrid.com"

    End Sub

    Sub CleanUpStand()On Error Resume NextApplication.EnableEvents = False

    If bSaveCopy = True Then Run "SaveCopyAs"

    bCalc = Application.Calculation = _xlCalculationAutomatic

    If bCalc = True Then Application.Calculation = _xlCalculationManual

    For Each wsSheet In ActiveWorkbook.Worksheets

    With wsSheet.Cells

    Set rLastRow = .Find(What:="*", After:=.Cells(1, 1), LookIn:=xlFormulas, _

    searchOrder:=xlByRows, SearchDirection:=xlPrevious).Offset(1, 1)

    Set rlastCol = .Find(What:="*", After:=.Cells(1, 1), LookIn:=xlFormulas, _

    searchOrder:=xlByColumns, SearchDirection:=xlPrevious).Offset(1, 1)

    End With

    wsSheet.Range(rLastRow.EntireRow, _rLastRow.EntireRow.End(xlDown)).Clear

    wsSheet.Range(rlastCol.EntireColumn, _rlastCol.EntireColumn.End(xlToRight)).Clear

    Application.CutCopyMode = FalseActiveSheet.UsedRange

  • 7/28/2019 Giam Kich Thuoc File

    3/7

    Next wsSheetApplication.EnableEvents = True

    If bCalc = True Then Application.Calculation = xlCalculationAutomatic

    If bSaveCopy = True ThenActiveWorkbook.SaveSet fs = CreateObject("Scripting.FileSystemObject")Set f = fs.Getfile(ActiveWorkbook.FullName)

    NewSize = UCase(f.Name) & " uses " & f.Size & " bytes."MsgBox "Procedure has finished." & Chr(13) & Chr(13) & OldSize & Chr(

    13) & Chr(13) & NewSize & Chr(13) & Chr(13) & "If the file size has increased, your Workbook is most likely corrupt. Restart the 'File Clean' and click the 'In case of corruption click here' button.", vbInformation, "OzGrid.com"

    Run "KillVar"Exit Sub

    End If

    Run "KillVar"

    MsgBox "Procedure has finished, you will need to " _& "save and then note if the file size has reduced via File>Properti

    es / General" & Chr(13) & Chr(13) & "If the file size has increased, your Workbook is most likely corrupt. Restart the 'File Clean' and click the 'In caseof corruption click here' button.", vbInformation, "OzGrid.com"End Sub

    Sub SaveCopyAs()On Error Resume NextstrName = "CopyOf" & ActiveWorkbook.NameActiveWorkbook.SaveAs strName

    End Sub

    Sub CleanFormShow()On Error Resume NextUserForm1.Show

    End Sub

    Sub KillVar()On Error Resume NextSet wsSheet = NothingiReply = 0Set rLastRow = NothingSet rlastCol = NothingbCalc = FalsestrCleanType = ""bSaveCopy = False

    OldSize = ""NewSize = ""strName = ""Set fs = NothingSet f = NothingSet s = NothingOn Error GoTo 0

    End Sub

  • 7/28/2019 Giam Kich Thuoc File

    4/7

    y na

    Large Excel file - how to reduce the size?

    Zone:Microsoft Excel Spreadsheet Software

    Tags:excel, file, size, reduce, largeI have an Excel file with UsedRange = A1:CH102. The saved size is 4151 kB. I have found a

    way to reduce the size:

    PHP Code:

    Option Base 1

    Sub ReduceSize()Dim lAntR As LongDim iAntK As IntegerDim aR() As SingleDim aK() As Single

    Dim n As IntegerDim sFil1 As StringDim sFil2 As StringDim sKat As StringDim sArk As String

    sFil1 = ActiveWorkbook.NamesKat = ActiveWorkbook.PathsArk = ActiveSheet.Name

    lAntR = Cells.Find(What:="*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row

    iAntK = Cells.Find(What:="*", SearchOrder:=xlByColumns, SearchDirection:=xl

    Previous).Column

    ReDim aR(lAntR)ReDim aK(iAntK)For n = 1 To lAntRaR(n) = Rows(n).RowHeight

    Next nFor n = 1 To iAntKaK(n) = Columns(n).ColumnWidth

    Next n

    Application.CutCopyMode = FalseRange(Cells(1, 1), Cells(lAntR, iAntK)).CopyWorkbooks.Add

    sFil2 = ActiveWorkbook.NameActiveSheet.Name = sArkActiveSheet.PasteApplication.CutCopyMode = False

    For n = 1 To lAntRRows(n).RowHeight = aR(n)

    Next nFor n = 1 To iAntKColumns(n).ColumnWidth = aK(n)

  • 7/28/2019 Giam Kich Thuoc File

    5/7

    Next n

    Workbooks(sFil1).Close savechanges:=FalseApplication.DisplayAlerts = FalseWorkbooks(sFil2).SaveAs sKat & "\" & sFil1Application.DisplayAlerts = True

    End Sub

    Nahttp://www.vbaexpress.com/kb/getarticle.php?kb_id=83

    DOSNET

    Thnh vin danh dTham gia ngy

    08 2007Ni C Ng

    H niBi gi

    1,624Cm n

    1,128c cm n 2,290 ln trong 1,064 bi vit

    File Size Reducer - Add-Ins lm gim dung lng file Excel.

    - Lang thang trn mng, tnh c ti tm c cng c lm gim dung lng file Excel kh hay,up ln cc bn tham kho. Tin ch c ng gi thnh mt Add-Ins rt d s dng, ti

    test v kh bt ng v tnh hiu qu ca n. Vi nhng file lm vic lu ngy, dung lng filegim i ng k, dung lng file gim i t hay nhiu ph thuc vo tng file.- Cc bn download v v thm vo Add-Ins trong Excel ca mnh, sau khi ci t xong, s xuthin tc v File cleantrong Menu chnh ca Excel. M mt file bt k bn cho l c rc, nnchn kiu dn dp l Standard v Save a Copy for me before clean sao lu trc khi tintrnh dn dp thc hin nhm m bo an ton d liu ca bn. Cc bn dng v cho kin nh !

    Tp tin nh km

    File Size Reducer.zip(24.4 KB, 2042 ln ti)Tr Li Vi Trch Dn

    C 25 thnh vin cm n DOSNET v bi vit ny:

    TKT,anhtuan1066,ch Xanh,danocio,ducpp0612,duydong2x,dvu58,gnudpe,hinichi,HUE2007,huyen_htc,ktthika,levanduyet,luffmevn,mtbt,ngtrphuong,nguyenmanhnam,nhan0210,Phanhanhdai,taiphanmem,tuananhag2009,vanle33,viendo,xphong01

    28-02-08, 03:17 PM#2

    http://www.vbaexpress.com/kb/getarticle.php?kb_id=83http://www.vbaexpress.com/kb/getarticle.php?kb_id=83http://www.vbaexpress.com/kb/getarticle.php?kb_id=83http://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/attachment.php?attachmentid=7999&d=1204178968http://www.giaiphapexcel.com/forum/attachment.php?attachmentid=7999&d=1204178968http://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56986http://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56986http://www.giaiphapexcel.com/forum/member.php?u=31595http://www.giaiphapexcel.com/forum/member.php?u=31595http://www.giaiphapexcel.com/forum/member.php?u=5605http://www.giaiphapexcel.com/forum/member.php?u=5605http://www.giaiphapexcel.com/forum/member.php?u=5605http://www.giaiphapexcel.com/forum/member.php?u=204910http://www.giaiphapexcel.com/forum/member.php?u=204910http://www.giaiphapexcel.com/forum/member.php?u=204910http://www.giaiphapexcel.com/forum/member.php?u=90784http://www.giaiphapexcel.com/forum/member.php?u=90784http://www.giaiphapexcel.com/forum/member.php?u=90784http://www.giaiphapexcel.com/forum/member.php?u=21791http://www.giaiphapexcel.com/forum/member.php?u=21791http://www.giaiphapexcel.com/forum/member.php?u=21791http://www.giaiphapexcel.com/forum/member.php?u=275768http://www.giaiphapexcel.com/forum/member.php?u=275768http://www.giaiphapexcel.com/forum/member.php?u=275768http://www.giaiphapexcel.com/forum/member.php?u=8903http://www.giaiphapexcel.com/forum/member.php?u=8903http://www.giaiphapexcel.com/forum/member.php?u=8903http://www.giaiphapexcel.com/forum/member.php?u=50241http://www.giaiphapexcel.com/forum/member.php?u=50241http://www.giaiphapexcel.com/forum/member.php?u=50241http://www.giaiphapexcel.com/forum/member.php?u=2936http://www.giaiphapexcel.com/forum/member.php?u=2936http://www.giaiphapexcel.com/forum/member.php?u=2936http://www.giaiphapexcel.com/forum/member.php?u=10150http://www.giaiphapexcel.com/forum/member.php?u=10150http://www.giaiphapexcel.com/forum/member.php?u=53300http://www.giaiphapexcel.com/forum/member.php?u=53300http://www.giaiphapexcel.com/forum/member.php?u=53300http://www.giaiphapexcel.com/forum/member.php?u=350864http://www.giaiphapexcel.com/forum/member.php?u=350864http://www.giaiphapexcel.com/forum/member.php?u=350864http://www.giaiphapexcel.com/forum/member.php?u=3http://www.giaiphapexcel.com/forum/member.php?u=3http://www.giaiphapexcel.com/forum/member.php?u=3http://www.giaiphapexcel.com/forum/member.php?u=560557http://www.giaiphapexcel.com/forum/member.php?u=560557http://www.giaiphapexcel.com/forum/member.php?u=560557http://www.giaiphapexcel.com/forum/member.php?u=19842http://www.giaiphapexcel.com/forum/member.php?u=19842http://www.giaiphapexcel.com/forum/member.php?u=19842http://www.giaiphapexcel.com/forum/member.php?u=440201http://www.giaiphapexcel.com/forum/member.php?u=440201http://www.giaiphapexcel.com/forum/member.php?u=440201http://www.giaiphapexcel.com/forum/member.php?u=351391http://www.giaiphapexcel.com/forum/member.php?u=351391http://www.giaiphapexcel.com/forum/member.php?u=351391http://www.giaiphapexcel.com/forum/member.php?u=379950http://www.giaiphapexcel.com/forum/member.php?u=379950http://www.giaiphapexcel.com/forum/member.php?u=42179http://www.giaiphapexcel.com/forum/member.php?u=42179http://www.giaiphapexcel.com/forum/member.php?u=42179http://www.giaiphapexcel.com/forum/member.php?u=347664http://www.giaiphapexcel.com/forum/member.php?u=347664http://www.giaiphapexcel.com/forum/member.php?u=347664http://www.giaiphapexcel.com/forum/member.php?u=222679http://www.giaiphapexcel.com/forum/member.php?u=222679http://www.giaiphapexcel.com/forum/member.php?u=222679http://www.giaiphapexcel.com/forum/member.php?u=100916http://www.giaiphapexcel.com/forum/member.php?u=100916http://www.giaiphapexcel.com/forum/member.php?u=100916http://www.giaiphapexcel.com/forum/member.php?u=19304http://www.giaiphapexcel.com/forum/member.php?u=19304http://www.giaiphapexcel.com/forum/member.php?u=19304http://www.giaiphapexcel.com/forum/member.php?u=160653http://www.giaiphapexcel.com/forum/member.php?u=160653http://www.giaiphapexcel.com/forum/member.php?u=160653http://www.giaiphapexcel.com/forum/showthread.php?8328-File-Size-Reducer-Add-Ins-l%C3%A0m-gi%E1%BA%A3m-dung-l%C6%B0%E1%BB%A3ng-file-Excel&p=56994#post56994http://www.giaiphapexcel.com/forum/showthread.php?8328-File-Size-Reducer-Add-Ins-l%C3%A0m-gi%E1%BA%A3m-dung-l%C6%B0%E1%BB%A3ng-file-Excel&p=56994#post56994http://www.giaiphapexcel.com/forum/showthread.php?8328-File-Size-Reducer-Add-Ins-l%C3%A0m-gi%E1%BA%A3m-dung-l%C6%B0%E1%BB%A3ng-file-Excel&p=56994#post56994http://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56986http://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56986http://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56986http://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56986http://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56986http://www.giaiphapexcel.com/forum/showthread.php?8328-File-Size-Reducer-Add-Ins-l%C3%A0m-gi%E1%BA%A3m-dung-l%C6%B0%E1%BB%A3ng-file-Excel&p=56994#post56994http://www.giaiphapexcel.com/forum/member.php?u=160653http://www.giaiphapexcel.com/forum/member.php?u=19304http://www.giaiphapexcel.com/forum/member.php?u=100916http://www.giaiphapexcel.com/forum/member.php?u=222679http://www.giaiphapexcel.com/forum/member.php?u=347664http://www.giaiphapexcel.com/forum/member.php?u=42179http://www.giaiphapexcel.com/forum/member.php?u=379950http://www.giaiphapexcel.com/forum/member.php?u=351391http://www.giaiphapexcel.com/forum/member.php?u=440201http://www.giaiphapexcel.com/forum/member.php?u=19842http://www.giaiphapexcel.com/forum/member.php?u=560557http://www.giaiphapexcel.com/forum/member.php?u=3http://www.giaiphapexcel.com/forum/member.php?u=350864http://www.giaiphapexcel.com/forum/member.php?u=53300http://www.giaiphapexcel.com/forum/member.php?u=10150http://www.giaiphapexcel.com/forum/member.php?u=2936http://www.giaiphapexcel.com/forum/member.php?u=50241http://www.giaiphapexcel.com/forum/member.php?u=8903http://www.giaiphapexcel.com/forum/member.php?u=275768http://www.giaiphapexcel.com/forum/member.php?u=21791http://www.giaiphapexcel.com/forum/member.php?u=90784http://www.giaiphapexcel.com/forum/member.php?u=204910http://www.giaiphapexcel.com/forum/member.php?u=5605http://www.giaiphapexcel.com/forum/member.php?u=31595http://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56986http://www.giaiphapexcel.com/forum/attachment.php?attachmentid=7999&d=1204178968http://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.vbaexpress.com/kb/getarticle.php?kb_id=83
  • 7/28/2019 Giam Kich Thuoc File

    6/7

    feelingyes

    Thnh vin tiu biu

    Tham gia ngy09 2007

    Ni C NgHi Phng-

    Bi gi426

    Cm n505c cm n 382 ln trong 123 bi vit

    Anh PhannhuKhang oi anh c phi l mt file excell ang l 2M khi dng add-in ny cn 1 M khng?"m mt file bt k m mnh cho l c rc" => l nh no h anh?Em cha r lm

    Happy Birthday to you!1.Vn bn cn cho bn.Phn tch ti chnh DN

    Nhng ng dng h tr ngi dng excelThay thi , i cuc i|Tra cu hm Excel|Nhng bi vit tng hp trn GPE,Cng thcv Hm trong Excel 2007

    Tr Li Vi Trch Dn

    Thnh vin sau cm n feelingyes v bi vit ny:

    duydong2x

    28-02-08, 03:27 PM#3

    DOSNET

    Thnh vin danh dTham gia ngy08 2007

    Ni C NgH ni

    Bi gi1,624

    Cm n

    http://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/showthread.php?t=8839http://vbpq.mof.gov.vn/listdoc.aspx?Field_id=91http://vbpq.mof.gov.vn/listdoc.aspx?Field_id=91http://www.giaiphapexcel.com/forum/showthread.php?p=27748#post27748http://www.giaiphapexcel.com/forum/showthread.php?t=3238http://www.giaiphapexcel.com/forum/showthread.php?t=3238http://www.giaiphapexcel.com/forum/showthread.php?t=5783http://www.giaiphapexcel.com/forum/showthread.php?t=5783http://www.giaiphapexcel.com/forum/showthread.php?t=5783http://www.giaiphapexcel.com/forum/showthread.php?t=7971http://www.giaiphapexcel.com/forum/showthread.php?t=7971http://www.giaiphapexcel.com/forum/showthread.php?t=7971http://www.giaiphapexcel.com/forum/forumdisplay.php?f=85http://www.giaiphapexcel.com/forum/forumdisplay.php?f=85http://www.giaiphapexcel.com/forum/forumdisplay.php?f=85http://www.giaiphapexcel.com/forum/showthread.php?t=10810http://www.giaiphapexcel.com/forum/showthread.php?t=10810http://www.giaiphapexcel.com/forum/showthread.php?t=10810http://www.giaiphapexcel.com/forum/showthread.php?t=10810http://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/member.php?u=275768http://www.giaiphapexcel.com/forum/member.php?u=275768http://www.giaiphapexcel.com/forum/showthread.php?8328-File-Size-Reducer-Add-Ins-l%C3%A0m-gi%E1%BA%A3m-dung-l%C6%B0%E1%BB%A3ng-file-Excel&p=56995#post56995http://www.giaiphapexcel.com/forum/showthread.php?8328-File-Size-Reducer-Add-Ins-l%C3%A0m-gi%E1%BA%A3m-dung-l%C6%B0%E1%BB%A3ng-file-Excel&p=56995#post56995http://www.giaiphapexcel.com/forum/showthread.php?8328-File-Size-Reducer-Add-Ins-l%C3%A0m-gi%E1%BA%A3m-dung-l%C6%B0%E1%BB%A3ng-file-Excel&p=56995#post56995http://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/member.php?18300-feelingyeshttp://www.giaiphapexcel.com/forum/member.php?13716-DOSNEThttp://www.giaiphapexcel.com/forum/showthread.php?8328-File-Size-Reducer-Add-Ins-l%C3%A0m-gi%E1%BA%A3m-dung-l%C6%B0%E1%BB%A3ng-file-Excel&p=56995#post56995http://www.giaiphapexcel.com/forum/member.php?u=275768http://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56994http://www.giaiphapexcel.com/forum/showthread.php?t=10810http://www.giaiphapexcel.com/forum/showthread.php?t=10810http://www.giaiphapexcel.com/forum/forumdisplay.php?f=85http://www.giaiphapexcel.com/forum/showthread.php?t=7971http://www.giaiphapexcel.com/forum/showthread.php?t=5783http://www.giaiphapexcel.com/forum/showthread.php?t=3238http://www.giaiphapexcel.com/forum/showthread.php?p=27748#post27748http://vbpq.mof.gov.vn/listdoc.aspx?Field_id=91http://www.giaiphapexcel.com/forum/showthread.php?t=8839http://www.giaiphapexcel.com/forum/member.php?18300-feelingyes
  • 7/28/2019 Giam Kich Thuoc File

    7/7

    1,128

    c cm n2,290 ln trong 1,064 bi vitNguyn vn bi feelingyes

    Anh PhannhuKhang oi anh c phi l mt file excell ang l 2M khi dng add-in ny cn 1 M khng?

    "m mt file bt k m mnh cho l c rc" => l nh no h anh?Em cha r lm- hiu r th no l "rc" e rng phi hiu r cu trc file Excel, Phi nh n s gii thchca cc cao th. bn thn ngi vit Add-In hiu c iu ny da vo s loi b nhng yut khng cn thit trong file (Tch ly do qu trnh s dng ca bn theo thi gian..V.v) Khngc ngha l file c dung lng 2Mb sau khi Clean, dung lng gim xung cn 1Mb. C nhngfile sau khi bn Clean, dung lng khng i v n ti u (khng th lc bt g thm).

    Tr Li Vi Trch Dn

    C 2 thnh vin cm n DOSNET v bi vit ny:

    feelingyes,SA_DQ

    29-02-08, 01:08 AM#4

    LearnExcel

    Thnh vin thng trcTham gia ngy

    08 2006

    Bi gi281

    Cm n114c cm n 456 ln trong161 bi vit

    y l rut ca CT ny Mi cc bc m x

    http://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56995http://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56995http://www.giaiphapexcel.com/forum/member.php?u=18300http://www.giaiphapexcel.com/forum/member.php?u=18300http://www.giaiphapexcel.com/forum/member.php?u=10http://www.giaiphapexcel.com/forum/member.php?u=10http://www.giaiphapexcel.com/forum/member.php?u=10http://www.giaiphapexcel.com/forum/showthread.php?8328-File-Size-Reducer-Add-Ins-l%C3%A0m-gi%E1%BA%A3m-dung-l%C6%B0%E1%BB%A3ng-file-Excel&p=57080#post57080http://www.giaiphapexcel.com/forum/showthread.php?8328-File-Size-Reducer-Add-Ins-l%C3%A0m-gi%E1%BA%A3m-dung-l%C6%B0%E1%BB%A3ng-file-Excel&p=57080#post57080http://www.giaiphapexcel.com/forum/showthread.php?8328-File-Size-Reducer-Add-Ins-l%C3%A0m-gi%E1%BA%A3m-dung-l%C6%B0%E1%BB%A3ng-file-Excel&p=57080#post57080http://www.giaiphapexcel.com/forum/member.php?453-LearnExcelhttp://www.giaiphapexcel.com/forum/member.php?453-LearnExcelhttp://www.giaiphapexcel.com/forum/member.php?453-LearnExcelhttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56995http://www.giaiphapexcel.com/forum/member.php?453-LearnExcelhttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56995http://www.giaiphapexcel.com/forum/member.php?453-LearnExcelhttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56995http://www.giaiphapexcel.com/forum/member.php?453-LearnExcelhttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56995http://www.giaiphapexcel.com/forum/member.php?453-LearnExcelhttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56995http://www.giaiphapexcel.com/forum/member.php?453-LearnExcelhttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56995http://www.giaiphapexcel.com/forum/member.php?453-LearnExcelhttp://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56995http://www.giaiphapexcel.com/forum/member.php?453-LearnExcelhttp://www.giaiphapexcel.com/forum/showthread.php?8328-File-Size-Reducer-Add-Ins-l%C3%A0m-gi%E1%BA%A3m-dung-l%C6%B0%E1%BB%A3ng-file-Excel&p=57080#post57080http://www.giaiphapexcel.com/forum/member.php?u=10http://www.giaiphapexcel.com/forum/member.php?u=18300http://www.giaiphapexcel.com/forum/newreply.php?do=newreply&p=56995