По подразбиране големината на дата файла на outlook 2007 е 20 ГБ.
За да разрешим на файла, да става по-голям:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\PST]
"MaxLargeFileSize"=dword:FFFFFFFF
"WarnLargeFileSize"=dword:FFFFFF00
Ако някоя папка от пътя я няма да се създаде, както и подпапките
Писна ми да откривам Америка по няколко пъти. Който го е правил, ще разбере за какво говоря. Та идеята на този блог е да ми облекчи живота в тази насока.
Етикети
бази данни
(3)
И като се замислиш ...
(16)
корен квадратен
(1)
математика
(1)
Млад шофьор
(2)
мъка-мъка
(46)
ПОЕЗИЯ
(17)
Полезности
(13)
Стиховете на леля
(9)
Acer A1
(2)
Adobe
(1)
AI (chat GPT)
(1)
An internal error occured
(1)
and TLS 1.2 in Advanced settings and try connecting again
(1)
Autocad
(1)
BEX
(2)
browser choice
(1)
can't print
(1)
Can't type in MS Word 2007
(1)
Cannot shift objects off sheet
(1)
Databases
(2)
DDE
(1)
desktop
(1)
disable usb storage device
(1)
E000FED1
(1)
excel
(8)
Excel cannot paste the data
(1)
Failed to recover database Error 0x1F
(1)
Firebird
(1)
HP BIOS error 501
(1)
IIS
(1)
integrated windows authentication
(1)
Lorem Ipsum
(1)
MS SQL 2008
(1)
outlook
(11)
problem sending the command to the program
(1)
right click
(1)
SAP
(2)
SAP GUI close itself after logon
(1)
SAP history
(1)
sysprep
(1)
System writer failed
(1)
telnet
(1)
TLS 1.1
(1)
Turn on TLS 1.0
(1)
VBA
(1)
vbe6ext
(2)
wi-fi hot-spot
(1)
Win Xp
(2)
windows 10
(4)
Windows 7
(7)
Windows 8
(1)
word
(5)
word 2016
(1)
Не всичко за мен
- Shrek
- Верую: неверник - следствие от прекомерната работа с продукти на Microsoft. Нямам девиз, нямам любимо ядене, пиене, книга, ... Знам какво обичам днес, но това изобщо не важи за утре. Мисля, че горе-долу стана ясно.
Търсене в този блог
сряда, 10 юни 2015 г.
понеделник, 1 юни 2015 г.
How to merge worksheets into one worksheet?
The following VBA code can help you to get data from all worksheets of active workbook together into a new single worksheet. At the same time, all of the worksheets must have the same field structure, same column headings and same column order. Please do as follows:
1. Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.
2. Click Insert > Module, and paste the following code in the Module Window.
Sub Combine()
Dim J As Integer
On Error Resume Next
Sheets(1).Select
Worksheets.Add
Sheets(1).Name = "Combined"
Sheets(2).Activate
Range("A1").EntireRow.Select
Selection.Copy Destination:=Sheets(1).Range("A1")
For J = 2 To Sheets.Count
Sheets(J).Activate
Range("A1").Select
Selection.CurrentRegion.Select
Selection.Offset(1, 0).Resize(Selection.Rows.Count - 1).Select
Selection.Copy Destination:=Sheets(1).Range("A65536").End(xlUp)(2)
Next
End Sub
3. Then press F5 key to run the code, and all the data in the workbook has been merged into a new worksheet named Combined which will add before all worksheets.
Notes:
(1.) Your data must start from A1, if not, the code will not take effect.
(2.) Your data must have the same structure.
(3.) This code only can combine all worksheets of the active workbook, if you want to merge worksheets from multiple workbooks, this code will not work.
I got this from here
1. Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.
2. Click Insert > Module, and paste the following code in the Module Window.
Sub Combine()
Dim J As Integer
On Error Resume Next
Sheets(1).Select
Worksheets.Add
Sheets(1).Name = "Combined"
Sheets(2).Activate
Range("A1").EntireRow.Select
Selection.Copy Destination:=Sheets(1).Range("A1")
For J = 2 To Sheets.Count
Sheets(J).Activate
Range("A1").Select
Selection.CurrentRegion.Select
Selection.Offset(1, 0).Resize(Selection.Rows.Count - 1).Select
Selection.Copy Destination:=Sheets(1).Range("A65536").End(xlUp)(2)
Next
End Sub
3. Then press F5 key to run the code, and all the data in the workbook has been merged into a new worksheet named Combined which will add before all worksheets.
Notes:
(1.) Your data must start from A1, if not, the code will not take effect.
(2.) Your data must have the same structure.
(3.) This code only can combine all worksheets of the active workbook, if you want to merge worksheets from multiple workbooks, this code will not work.
I got this from here
Абонамент за:
Публикации (Atom)