แก้ไขปัญหาทั่วไป
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
ปัญหาที่พบบ่อยซึ่งคุณอาจพบเมื่อแปลงโค้ด VBA เป็น Apps Script
ด้วยตัวแปลงมาโครแสดงอยู่ด้านล่าง
การพิมพ์
ระบบจะแปลง VBA API ที่พิมพ์ไฟล์เป็น Apps Script โดยอัตโนมัติ แต่อาจทำงานแตกต่างจาก VBA API เดิม
ตัวอย่าง 2 รายการมีดังนี้
VBA API | ลักษณะการทำงานใน Apps Script |
---|
PrintOut | แปลงเป็น Apps Script แต่ Apps Script
API จะพิมพ์ลงในไฟล์แทนที่จะพิมพ์ไปยังเครื่องพิมพ์ คุณพิมพ์ไฟล์ PDF ด้วยตนเองได้
|
PrintToFile | แปลงเป็น Apps Script ระบบจะบันทึกไฟล์ PDF ไว้ในโฟลเดอร์
ไดรฟ์ของฉัน |
รายการที่ไม่ได้แปลง
ตัวแปลงมาโครจะไม่แปลงฟีเจอร์ต่อไปนี้ และคุณจะต้องแปลงด้วยตนเอง
ทริกเกอร์
ตัวแปลงมาโครจะไม่แปลงทริกเกอร์ 2 ประเภท ได้แก่ แป้นพิมพ์ลัดและทริกเกอร์บางรายการที่อิงตามเหตุการณ์
ในหลายๆ กรณี คุณสามารถสร้างทริกเกอร์เหล่านี้ด้วยตนเองได้
แป้นพิมพ์ลัด
หากต้องการเพิ่มแป้นพิมพ์ลัด ให้ทำตามขั้นตอนเพื่อนำเข้าฟังก์ชันเป็น
มาโคร
ทริกเกอร์ตามเหตุการณ์
เหตุการณ์บางอย่างจากโค้ด VBA เช่น BeforeClose
หรือ BeforeSave
ไม่มีเหตุการณ์ที่เทียบเท่าใน Apps Script แต่คุณอาจสร้างวิธีแก้ปัญหาได้
สำหรับเหตุการณ์ต่างๆ เช่น BeforeClose
คุณสามารถสร้างเมนูหรือปุ่มที่กำหนดเองเพื่อคลิก
เพื่อดำเนินการที่ต้องทำก่อนปิดสเปรดชีต
เนื่องจาก Google ชีตจะบันทึกการแก้ไขแต่ละครั้งโดยอัตโนมัติ จึงไม่สามารถใช้ทางอ้อมสำหรับเหตุการณ์ต่างๆ เช่น
BeforeSave
ใน VBA UserForm คือหน้าต่างหรือกล่องโต้ตอบในอินเทอร์เฟซผู้ใช้ (UI) ของแอปพลิเคชัน
Macro Converter ไม่แปลง UserForm คุณสร้างด้วยตนเองได้ใน Apps Script
- เปิดไฟล์ที่แปลงแล้วใน Google ชีตในคอมพิวเตอร์
- ที่ด้านบน ให้คลิกส่วนขยาย >
** Apps Script**
- ที่ด้านซ้ายของเอดิเตอร์ข้าง "ไฟล์" ให้คลิกเพิ่มไฟล์ add
> HTML เราขอแนะนำให้คุณตั้งชื่อไฟล์ HTML ให้เหมือนกับ
UserForm VBA ต้นฉบับ
- เพิ่มช่องและข้อมูลที่ต้องการให้ปรากฏในแบบฟอร์ม ดูข้อมูลเพิ่มเติม
เกี่ยวกับแบบฟอร์ม HTML ได้ที่ W3school.com
- ทางด้านซ้าย ให้คลิกไฟล์ Apps Script (ไฟล์ GS) ที่มีโค้ดที่แปลงแล้ว
- หากมี
onOpen()
ทริกเกอร์ในโค้ดอยู่แล้ว ให้อัปเดตด้วยโค้ดด้านล่าง หากไม่มีทริกเกอร์ onOpen()
ในโค้ด ให้เพิ่มโค้ดด้านล่าง
function onOpen() {
SpreadsheetApp.getUi()
.createMenu('User Form')
.addItem('Show Form', 'showForm')
.addToUi();
}
function showForm() {
var html = HtmlService.createHtmlOutputFromFile('userform_module_name')
.setWidth(100)
.setTitle('Sign-up for Email Updates');
SpreadsheetApp.getUi().showSidebar(html);
}
- แทนที่
userform_module_name
ด้วยชื่อไฟล์ HTML ที่คุณเพิ่ม
- คลิกบันทึกโปรเจ็กต์ save ที่ด้านบน
- เปลี่ยนไปใช้ Google ชีตแล้วโหลดหน้าเว็บซ้ำ
- ที่ด้านบนของ Google ชีต ให้คลิกแบบฟอร์มผู้ใช้ > แสดงแบบฟอร์ม
ช่วงที่ตั้งชื่อแล้ว
ใน Excel ช่วงที่ตั้งชื่อแล้วคือชื่อที่กำหนดให้กับเซลล์เดียวหรือช่วงของเซลล์
เมื่อแปลงไฟล์ Excel เป็น Google ชีต ระบบจะไม่แปลงช่วงที่มีชื่อบางประเภท
เนื่องจากไม่รองรับ ตัวอย่าง 2 รายการมีดังนี้
ช่วงที่ตั้งชื่อแล้วที่ไม่รองรับ | คำอธิบาย |
---|
ตาราง | ไม่รองรับใน Google ชีต แต่มีวิธีแก้ปัญหาชั่วคราว
หากต้องการสร้างช่วงที่ตั้งชื่อนี้ขึ้นใหม่ในชีต ให้เพิ่มช่วงที่ตั้งชื่อซึ่งชี้ไปยัง
สัญกรณ์ A1 ของช่วงตาราง ใช้ชื่อเดียวกับช่วงที่มีชื่อเดิม
ในโค้ด VBA เพื่อให้โค้ดที่แปลงแล้วรู้จักช่วงดังกล่าว
|
รายการช่วง | ไม่รองรับใน Google ชีต ไม่มีวิธีแก้ปัญหาชั่วคราว |
บทความที่เกี่ยวข้อง
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-08-31 UTC
[null,null,["อัปเดตล่าสุด 2025-08-31 UTC"],[[["\u003cp\u003eWhen converting VBA to Apps Script, printing functions behave differently; \u003ccode\u003ePrintOut\u003c/code\u003e prints to a file instead of directly to a printer, while \u003ccode\u003ePrintToFile\u003c/code\u003e saves the PDF to your MyDrive.\u003c/p\u003e\n"],["\u003cp\u003eThe Macro Converter does not handle certain VBA features, including some triggers, UserForms, and unsupported named ranges, requiring manual conversion.\u003c/p\u003e\n"],["\u003cp\u003eKeyboard shortcuts and some event-based triggers (like \u003ccode\u003eBeforeClose\u003c/code\u003e or \u003ccode\u003eBeforeSave\u003c/code\u003e) from VBA require manual configuration or workarounds in Apps Script due to functional differences.\u003c/p\u003e\n"],["\u003cp\u003eUserForms need to be recreated in Apps Script using HTML, and integrated into the spreadsheet through custom menus or sidebars.\u003c/p\u003e\n"],["\u003cp\u003eWhile most named ranges are converted, tables and lists of ranges require manual adjustments or are unsupported, necessitating alternative approaches in Google Sheets.\u003c/p\u003e\n"]]],[],null,["# Address common issues\n\nCommon issues you might run into when you convert your VBA code to Apps Script\nwith the Macro Converter are listed below.\n\nPrinting\n--------\n\nVBA APIs that print files are automatically converted to Apps Script, but might\nbehave differently than the original VBA API. Below are two examples:\n\n| VBA API | Behavior in Apps Script |\n|---------------|------------------------------------------------------------------------------------------------------------------------------|\n| `PrintOut` | Converts to Apps Script, but the Apps Script API prints to a file instead of a printer. You can manually print the PDF file. |\n| `PrintToFile` | Converts to Apps Script. The PDF file is saved in your MyDrive folder. |\n\nUnconverted items\n-----------------\n\nThe following features aren't converted by the Macro Converter and need to be\nconverted manually:\n\n- Some types of [Triggers](#triggers)\n- [Userforms](#userforms)\n- Unsupported types of [Named ranges](#named_ranges)\n\n### Triggers\n\nTwo types of triggers, keyboard shortcuts and some event-based triggers, aren't\nconverted by the Macro Converter. In many cases, you can create these triggers\nmanually.\n\n#### Keyboard shortcuts\n\nTo add keyboard shortcuts, follow the steps to [import functions as\nmacros](https://developers.google.com/apps-script/guides/sheets/macros#importing_functions_as_macros).\n\n#### Event-based triggers\n\nSome events from VBA code, like `BeforeClose` or `BeforeSave`, don't have\nequivalents in Apps Script, but you might be able to create a workaround.\n\nFor events like `BeforeClose`, you can create a custom menu or button to click\nto perform the action that needs to take place before you close the spreadsheet.\n\nSince Google Sheets auto-saves each edit, workarounds for events like\n`BeforeSave` aren't feasible.\n\n### Userforms\n\nIn VBA, a [*UserForm*](https://docs.microsoft.com/en-us/office/vba/language/reference/user-interface-help/userform-object) is a window or dialog box in an application's user\ninterface (UI). The Macro Converter doesn't convert UserForms. You can manually\ncreate them in Apps Script.\n\n#### Create a user form dialogue\n\n1. On your computer, open the converted file in [Google Sheets](http://sheets.google.com).\n2. At the top, click **Extensions** \\\u003e \\*\\* Apps Script\\*\\*.\n3. At the left of the editor next to \"Files,\" click Add a file add **\\\u003e HTML**. We recommend that you give the HTML file the same name as your original VBA UserForm.\n4. Add the fields and information you want to appear in your form. Learn more about HTML forms at [W3school.com](https://www.w3schools.com/html/html_forms.asp).\n5. At the left, click the Apps Script file (GS file) that has your converted code.\n6. If you already have an `onOpen()` trigger in your code, update it with the code below. If you don't have the `onOpen()` trigger in your code, add the code below. \n\n ```gdscript\n function onOpen() {\n SpreadsheetApp.getUi()\n .createMenu('User Form')\n .addItem('Show Form', 'showForm')\n .addToUi();\n }\n function showForm() {\n var html = HtmlService.createHtmlOutputFromFile('userform_module_name')\n .setWidth(100)\n .setTitle('Sign-up for Email Updates');\n SpreadsheetApp.getUi().showSidebar(html);\n }\n \n ```\n7. Replace `userform_module_name` with the name of the HTML file you added.\n8. At the top, click Save project save.\n9. Switch to the Google Sheet and reload the page.\n10. At the top of the Google Sheet, click **User Form** \\\u003e **Show Form**.\n\n### Named ranges\n\nIn Excel, named ranges are names given to a single cell or range of cells.\n\nWhen you convert your Excel file to Google Sheets, some types of named ranges\nwon't be converted because they're not supported. Below are two examples:\n\n| Unsupported named ranges | Description |\n|--------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Tables | Not supported in Google Sheets, but has a workaround. \u003cbr /\u003e To recreate this named range in Sheets, add a named range that points to the A1 notation of the table range. Use the same name as the original named range in your VBA code so that the converted code recognizes it. |\n| List of ranges | Not supported in Google Sheets. There isn't a workaround. |\n\nRelated articles\n----------------\n\n- [Macro Converter add-on overview](/apps-script/guides/macro-converter/overview)\n- [Determine if VBA macros are compatible](/apps-script/guides/macro-converter/compatibility-report)\n- [Convert VBA macros to Apps Script](/apps-script/guides/macro-converter/convert-files)\n- [Fix errors in your converted code](/apps-script/guides/macro-converter/fix-conversion-errors)\n- [Watch Macro Converter tutorials](/apps-script/guides/macro-converter/tutorials)\n- [List of compatible VBA APIs](/apps-script/guides/macro-converter/compatible-vba-apis)"]]