Bước 1: Mở tài liệu của bạn trên máy tính và chọn tab View trên thanh công cụ. Bước 2: Chọn Macros trong mục Macros. Đây là tuỳ chọn nằm cuối cùng ở trong tab View. Bước 3: Chọn View Macros. Ngoài ra, bạn cũng có thể nhấn tổ hợp phím tắt Alt + F8 để truy cập hộp thoại Macros. Bước 4: Trong hộp thoại Macros, bạn hãy […]
Tin học Văn Phòng
Assign a macro to a button
After you create a macro, you can assign it to a button you click to run the macro. You can assign a macro to a button on the Quick Access Toolbar or to a button in your own personal group on the ribbon. If you want a macro button to be available in other workbooks, assign it […]
How to toggle text boundaries on and off
You can toggle text boundaries on and off by using the following macro and assigning that marco to your toolbar: Sub ToggleShowTextBoundaries() If ActiveWindow.View.ShowTextBoundaries Then ActiveWindow.View.ShowTextBoundaries = False Else ActiveWindow.View.ShowTextBoundaries = True End IfEnd Sub