Macro Converter 插件可自动完成大部分转换过程,但您可能需要对某些 API 和其他项进行调整,以最终完成代码。
通过本指南,了解添加到项目中的 Apps 脚本文件 (GS 文件),解读不同的错误类型,以及了解如何修正错误。
了解添加到项目中的 Apps 脚本文件
系统会向您的 Apps Script 项目添加其他 GS 文件,以帮助您:
- 定义不存在于 Apps Script 中的 VBA 常量和值。
- 实现未转换的 API。
- 解决变体问题。
以下 GS 文件会添加到您的 Apps 脚本项目中:
Library.gs
Unimplemented_constructs.gs
Variant_resolutions.gs
Library.gs
通常情况下,您无需修改 library.gs
文件中的任何内容。
library.gs
文件用于定义 VBA 代码中使用的但不存在于 Apps Script 中的函数和常量。这有助于新的 Apps 脚本代码更接近您的 VBA 代码。此外,您无需在每次使用 library.gs
文件中的函数或常量时重复定义。
Unimplemented_constructs.gs
unimplemented_constructs.gs
文件用于处理 Macro Converter 无法转换的结构或 API。您可能需要修改此文件,才能使代码按预期运行。
示例:Window.Activate()
以下是一个名为 Window.Activate()
的不受支持 API 的示例。Macro Converter 会创建一个具有类似名称的新 Apps 脚本函数,并在 unimplemented_constructs.gs
文件中对其进行定义。由于 VBA 函数不受支持,因此新的 Apps Script 函数会抛出异常。
该新函数会添加到转换后的 Apps Script 代码中,即 VBA 代码中使用原始 API 的所有位置。
如果您找到了重现原始 API 行为的权宜解决方法,只需更新 unimplemented_constructs.gs
文件中的函数定义即可。在此处定义函数后,该函数将应用于 Apps 脚本项目中的所有位置。
以下是代码示例:
原始 VBA 代码
Window.activate()
转换后的 Apps 脚本代码,已内嵌添加
_api_window_activate();
向 unimplemented_constructs.gs
文件添加了函数定义
/** * Could not convert window.activate API. Please add relevant code in the * following function to implement it. * This API has been used at the following locations in the VBA script. * module1 : line 3 * * We couldn't find an equivalent API in Apps Script for this VBA API. Please * reconsider if this function call is critical, otherwise consider implementing * it in a different way. */ function _api_window_activate(CallingObject) { ThrowException("API window.activate not supported yet."); }
Variant_resolutions.gs
如果无法确定对象的类型,系统会将 variant_resolutions.gs
文件添加到您的 Apps Script 项目中。造成这种情况的原因有很多,例如 API 具有多个返回类型,或者对象本身被声明为变体。
Macro Converter 会在此文件中添加一个名为 __handle_resolve_<api>()
的新函数,该函数替换了相关 API 并帮助确定对象类型。
在某些情况下,您可能需要更新 __handle_resolve_<api>()
函数以手动声明对象类型。请参阅不支持的对象类型。
示例:name()
VBA 中的许多对象类型都定义了 name()
API。通常,Apps 脚本的等效项为 getName()
,但并非适用于所有对象类型。可能会出现多种替代情况:
- 对象的等效 API 的名称与
getName()
不同。 - 该对象没有用于获取其名称的 Apps 脚本 API。
- 没有等效的 Apps 脚本对象。
如果无法确定对象类型,宏转换器会在 variant_resolutions.gs
文件中创建一个名为 __handle_resolve_name
的新函数。
以下是代码示例:
原始 VBA 代码
a = Selection.name
在这种情况下,系统会针对当前选择调用 API name()
。所选内容可以是 Sheet 对象或 Shape 对象。如果它是 Google 表格对象,则转换为 getName()
;如果它是 Shape 对象,则 Apps Script 中没有等效项。
转换后的 Apps 脚本代码,已内嵌添加
a = __handle_resolve_name({}, getActiveSelection(), {});
以下 __handle_resolve_name()
函数已添加到 variant_resolution.gs
文件中,用于求解不同的对象类型。该函数会检查对象类型,然后使用 getName()
(如果受支持)或抛出错误(如果不支持 getName()
)。
向 variant_resolution.gs
文件添加了函数定义
function __handle_resolve_name(ExecutionContext, CallingObject, params_map) { var found_api_variant = false; var return_value; if (String(CallingObject) == "Sheet") { if (!ExecutionContext.isLhs) { return_value = CallingObject.getName(); found_api_variant = true; } } if (CallingObject instanceof ChartInSheet) { if (!ExecutionContext.isLhs) { return_value = CallingObject.getName(); found_api_variant = true; } } if (!found_api_variant) { ThrowException("API.name not supported yet." ); } return return_value; }
查找错误
如果您在转换后的 Apps Script 代码中遇到错误,该消息会指明错误类型及其位置。错误消息的格式取决于您使用的 Apps Script 运行时。
如果您使用的是默认的 V8 运行时,则会看到如下所示的错误:
_api_windows_active (unimplemented_constructs:2:3)
这意味着错误位于 unimplemented_constructs.gs
文件的第 2 行第 3 个字符处。
如果您使用的是已废弃的 Rhino 运行时,则会看到如下所示的错误:
unimplemented_constructs:2 (_api_windows_active)
这意味着错误位于 unimplemented_constructs.gs
文件的第 2 行。
错误类型
您可以修复上述 unimplemented_constructs.gs
和 variant_resolution.gs
文件中遇到的大多数错误。
您可能会遇到的错误类型包括:
未实现的 API
未实现的 API 是指 Macro Converter 无法将其从 VBA 转换为 Apps Script 的 API,并且没有针对该 API 的已知解决方法。
未实现的 API 通常会作为空函数(有时带有空签名)添加到 unimplemented_constructs.gs
文件中。如果无法确定对象类型,系统可能会改为将未实现的 API 添加到 variant_resolution.gs
文件中。
在转换之前生成的兼容性报告中,此 API 被标记为需要进一步调查。
如果您在转换文件之前未在您的 VBA 代码中修复此类 API,则它在 Apps 脚本项目中的显示方式如下:
/** * Could not convert. Please add relevant code in the following * function to implement it. * This API has been used at the following locations in the VBA script. *: * We couldn't find an equivalent API in Apps Script for this VBA API. Please * reconsider if this function call is critical, otherwise consider implementing * it in a different way. * @param param1 {} * @param param2 {} * ... * @return {} */ function _api_<API_name>(param1, param2, ....) { ThrowException("APInot supported yet." ); }
修复未实现的 API 错误
使用现有的 Apps Script API 或 JS 库定义未实现的 API。 为此,请按以下步骤操作:
- 在错误所在的位置打开转换后的 Apps Script 代码。请参阅查找错误。
- 在函数上方,查看添加的注释。在某些情况下,注释会建议如何在 Apps 脚本中实现 API。
- 如果您找不到在 Apps Script 中实现该 API 的方法,不妨考虑从代码中移除该 API。
- 如果您找不到解决方法或无法从代码中移除此 API,并且您的宏抛出此错误,则无法转换此宏。
未实现 API 错误示例
以下是未实现 API 场景的示例以及解决方法:
- 没有等效的 Apps 脚本:显示针对
Chart.Protect
的间接权宜解决方法,此 API 不存在于 Apps 脚本中。 - 未知对象类型:介绍如何处理变量对象类型,以及如何实现可在 Apps Script 中重新创建的不受支持的对象类型。
示例 1:没有等效的 Apps 脚本或未知 API
在此示例中,系统不会自动转换 Chart.Protect
,因为 Google 表格中没有保护图表的方法。
/** * Could not convert chart.protect API. Please add relevant code in the following * function to implement it. * * This API has been used at the following locations in the VBA script. * sheet1 : line 3 * You can use the following Apps Script APIs to convert it. * * Comments : Auto conversion of Chart.Protect is not supported yet. If the API is * critical for the workflow the user can implement the unimplemented handler * method in the generated code, else comment out the throw statement. * * @param {Object} CallingObject represents the parent object using which the API * has been called. * @param {string} Password * @param {boolean} DrawingObjects * @param {boolean} Contents * @param {boolean} Scenarios * @param {boolean} UserInterfaceOnly * */ function _api_chart_protect( CallingObject, Password, DrawingObjects, Contents, Scenarios, UserInterfaceOnly) { ThrowException('API chart.protect not supported yet.'); }
下面展示了保护范围的实现示例:
/** * Could not convert chart.protect API. Please add relevant code in the following * function to implement it. * This API has been used at the following locations in the VBA script. * sheet1 : line 3 * * You can use the following Apps Script APIs to convert it. * Comments : Auto conversion of Chart.Protect is not supported yet. If the API * is critical for the workflow the user can implement the unimplemented handler * method in the generated code, else comment out the throw statement. * * @param {Object} CallingObject represents the parent object using which the API * has been called. * @param {string} Password * @param {boolean} DrawingObjects * @param {boolean} Contents * @param {boolean} Scenarios * @param {boolean} UserInterfaceOnly */ function _api_chart_protect( CallingObject, Password, DrawingObjects, Contents, Scenarios, UserInterfaceOnly) { var ranges = CallingObject.getChart().getRanges(); for (var i = 0; i < ranges.length; i++) { // Note that this does not lock the range for the document owner. ranges[i].protect(); } }
示例 2:不支持的对象类型
如果对象类型未知,系统会将未实现的 API 错误添加到 variant_resolution.gs
文件中。以下示例扩展了上面的 VBA name()
API 示例。请参阅 variant_resolution.gs
。
在此示例中,您将了解以下内容:
- 如何将
name()
API 转换为variant_resolution.gs
文件中的新函数。 - 在转换后的代码中如何调用新函数。
- 如何在 Apps 脚本中为
CommandBar
(一种不受支持的对象类型)创建解决方法。
1. 由于转换后的代码无法确定调用 name()
的确切对象类型,因此宏转换器创建了一个名为 __handle_resolve_name
的新函数,如下所示。
function __handle_resolve_name(ExecutionContext, CallingObject, params_map) { var found_api_variant = false; var return_value; if (String(CallingObject) == "Sheet") { if (!ExecutionContext.isLhs) { return_value = CallingObject.getName(); found_api_variant = true; } } if (CallingObject instanceof ChartInSheet) { if (!ExecutionContext.isLhs) { return_value = CallingObject.getName(); found_api_variant = true; } } if (!found_api_variant) { ThrowException('API.name not supported yet.' ); } return return_value; }
2. 假设 VBA 代码定义了一个用于调用 name()
API 的 PrintName()
函数。VBA 代码如下所示:
‘Defining a function that prints the name of the object in parameter Sub PrintName(obj as Variant) Debug.Print obj.Name End Sub
function PrintName(obj) { Logger.log(_handle_resolve_name(obj)); }
3. 假设您的 VBA 代码对对象类型 CommandBar
调用 PrintName()
函数。VBA 代码如下所示:
PrintName Application.CommandBars.item("Standard")
CommandBar
,因此也不支持上述 VBA 代码中使用的两种方法。Application.CommandBars()
:在 VBA 中,此方法会返回所有CommandBar
对象的列表。CommandBars.item()
:在 VBA 中,此方法会返回特定的CommandBar
对象。
_api_application_commandbars()
_api_commandbars_item()
PrintName(_api_commandbars_item(_api_application_commandbars(), "Standard"))) Here’s how the new functions are added to the unimplemented_construct.gs file: function _api_application_commandbars(CallingObject) { ThrowException('API application.commandbars not supported yet.'); } function _api_commandbars_item(CallingObject, index) { ThrowException('API commandbars.item not supported yet.'); }
如需使用新函数,请按以下步骤操作:
3.1 定义一个用于创建 CommandBars
功能的新对象类型,以及一个类似于 VBA 中存在的 CommandBars
的新集合。
3.2 为新对象类型添加 getName()
方法。
第 3.1 步和第 3.2 步如以下代码所示。菜单对象会被创建为模仿 CommandBars
行为的新对象类型。
// Our Implementation of CommandBar using Menu objects. function CommandBar(name) { this.name = name; // Create a menu object to represent the commandbar. this.menu = SpreadsheetApp.getUi().createMenu(name); // Create methods for retrieving or updating the name of the object this.getName = function() { return this.name; }; this.updateName = function(name) { this.name = name; }; // ======================================================================== // Implement other methods of CommandBar objects that are used in the script. // ===================================================================== return this; } // Our implementation of the collection of CommandBars that exists in VBA function CommandBars() { this.commandBars = []; this.getCommandBar = function(name) { for (var i = 0; i < this.commandBars.length; i++) { if (!this.commandBars[i].getName() == name) { return this.commandBars[i]; } } // No commandBar with the name exists, create a new one and return. var commandBar = new CommandBar(name); this.commandBars.push(commandBar); return commandBar; }; return this; } // Create a global object that represents CommandBars collection. var GlobalCommandBars = new CommandBars();
3.3 修改 variant_resolution.gs
文件中的 __handle_resolve_name
函数以处理新的对象类型。向函数添加一个部分,如下所示:
function __handle_resolve_name(ExecutionContext, CallingObject, params_map) { var found_api_variant = false; var return_value; if (String(CallingObject) == "Sheet") { if (!ExecutionContext.isLhs) { return_value = CallingObject.getName(); found_api_variant = true; } } if (CallingObject instanceof ChartInSheet) { if (!ExecutionContext.isLhs) { return_value = CallingObject.getName(); found_api_variant = true; } } // New section added below // ======================================================================== if (CallingObject instanceof CommandBar) { objectExtend(params_map, {VALUETOSET: params_map.param0}); if (ExecutionContext.isLhs) { // Call the setter method. CallingObject.updateName(params_map.VALUETOSET); found_api_variant = true; } else { // Getter is called, return the commandbar name, return_value = CallingObject.getName(); found_api_variant = true; } } // ======================================================================== // New section added above if (!found_api_variant) { ThrowException('API.name not supported yet.' ); } return return_value; }
3.4 定义 unimplemented_constructs.gs
文件中创建的两个函数 (_api_application_commandbars()
、_api_commandbars_item()
)。此步骤可确保函数的原始调用正常运行。
//This is straightforward based on the implementation of a CommandBar and the // CommandBars collection above: function _api_application_commandbars(CallingObject) { return GlobalCommandBars; } function _api_commandbars_item(CallingObject, index) { return CallingObject.getCommandBar(index); }
未实现的语言结构
结构体是代码语言中用于控制执行流程或数据显示的元素。例如循环、标签、事件和 goto。以下是所有 VBA 结构的列表。
宏转换器无法转换的结构会被视为未实现的语言结构。
如果宏转换器确定存在未实现的语言结构,则会插入 TODO
注释。
不支持以下 VBA 结构:
修复了未实现的语言结构错误
- 更新您的代码,使其逻辑不依赖于不受支持的语言结构。
- 在错误所在的位置打开转换后的 Apps Script 代码。请参阅查找错误。
- 根据代码的逻辑,以不需要不受支持的语言结构的方式更新代码。
- 如果您找不到在不使用不受支持的语言结构的情况下重写代码的方法,则无法转换此宏。
未实现语言结构错误示例
最常见的未实现语言结构之一是 GoTo
语句。您可以将某些 VBA GoTo
语句替换为循环。下面是两个使用循环代替 GoTo
语句的示例。
示例 1:将 GoTo
替换为 While Loop
原始 VBA 代码
Sub Test() a = 0 start: Debug.Print a While a < 100 a = a + 1 If a Mod 3 == 0 Goto start End If Wend End Sub
function test() { var a = 0; start: do { console.log(a); while (a < 100) { a = a + 1; if (a % 3 == 0) { continue start; } } break start; } while (true); }
示例 2:将 GoTo 替换为 For 循环
原始 VBA 代码Sub Test() a = 0 For i = 1 to 100 For j = 1 to 10 a =a a + 1 If i + j > 50 GoTo endLoop End If Next j Next i endLoop: MsgBox a End Sub
function test() { var a = 0; endLoop: for (var i = 1; i <= 100; i++) { for (var j = 0; j <=10; j++) { If (i + j > 50) { break endLoop; } } } Browser.msgBox(a); } break start; } while (true); }
部分支持的 API
对于部分支持的 API,Apps Script 支持部分输入参数,但不支持部分输入参数。
例如,VBA API legend_position
用于定义 Excel 图表中的图例。它支持多种类型的输入值,包括:
xlLegendPositionBottom
:将图例置于图表底部。xlLegendPositionCorner
:将图例放置在图表的角落。xlLegendPositionCustom
:将图例放在图表上的自定义位置。
App Script 有一个等效的代码,但仅支持其中的部分值。不支持以下值:
xlLegendPositionCorner
xlLegendPositionCustom
为了在转换后的代码中标记部分受支持 API 的值不受支持,系统会向 library.gs
文件添加一个用于检查这些值的验证条件。例如:
if (position == xlLegendPositionCorner || position == xlLegendPositionCustom) { position = _handle_legend_position_error(position); }
如果验证条件找到某个不受支持的值,系统会在 unimplemented_constructs.gs
文件中创建一个错误处理程序函数 _handle_<API_name>_error
。
该函数会抛出用户错误,并且不会将值替换为受支持的值。例如:
/** * Throw error message for unsupported legend position. * The VBA API Legend.Position which can take values xlLegendPositionTop, * xlLegendPositionLeft, xlLegendPositionBottom, xlLegendPositionRight, * xlLegendPositionCorner, xlLegendPositionCustom. It is partially supported in * Apps Scripts that supports only a subset of the values (does not support * xlLegendPositionCorner and xlLegendPositionCustom). * @param {string} position */ function _handle_legend_position_error(position) { // Please comment the throw statement and return a supported position value // instead. // Values that are supported here are xlLegendPositionTop, // xlLegendPositionLeft, xlLegendPositionBottom, xlLegendPositionRight. throw new Error( 'Google Sheets does not support legend position: ' + position); }
修复了部分支持的 API 错误
请定义 _handle_<API_name>_error
函数,以将不受支持的值替换为符合您需求的可接受解决方法。
- 在错误所在的位置打开转换后的 Apps Script 代码。请参阅查找错误。
- 请阅读函数上方的注释,了解哪些值受支持,哪些值不受支持。
- 对于不支持的值,请确定哪些支持的值可以作为合适的替换值。
- 请改为更新函数
_handle_<API_name>_error
,以返回受支持的值。 - 如果您找不到替换不受支持的值的方法,则无法转换此宏。
部分支持的 API 错误示例
以下示例对上面提到的 VBA API legend_position
进行了扩展。请参阅部分支持的 API。
以下是使用不受支持的值 xlLegendPositionCustom
的原始 VBA 代码示例。
Charts(1).Legend.Position = xlLegendPositionCustom
宏转换器会将以下函数添加到 unimplemented_constructs.gs
文件中:
/** * Throw error message for unsupported legend position. * The VBA API Legend.Position which can take values xlLegendPositionTop, * xlLegendPositionLeft, xlLegendPositionBottom, xlLegendPositionRight, * xlLegendPositionCorner, xlLegendPositionCustom. It is partially supported in * Apps Scripts that supports only a subset of the values (does not support * xlLegendPositionCorner and xlLegendPositionCustom). * @param {string} position */ function _handle_legend_position_error(position) { // Please comment the throw statement and return a supported position value // instead. // Values that are supported here are xlLegendPositionTop, // xlLegendPositionLeft, xlLegendPositionBottom, xlLegendPositionRight. throw new Error( 'Google Sheets does not support legend position: ' + position); }
需要手动操作
需要手动操作表示 VBA API 可以转换为 Apps 脚本,但需要使用权宜解决方法。
在您转换之前生成的兼容性报告中,此类 API 的标签为支持,但需要使用权宜解决方法。
如果您在转换文件之前未在您的 VBA 代码中修复此类 API,则它在 Apps 脚本项目中的显示方式如下:
/** * Could not convertAPI. Please add relevant code in the following * function to implement it. * This API has been used at the following locations in the VBA script. *: * * You can use the following Apps Script APIs to convert it. * Apps Script APIs :* Apps Script documentation links : * * @param param1 { } * @param param2 {} * ... * @return {} */ function _api_<API_name>(param1, param2, ....) { ThrowException("APInot supported yet." ); }
修正“需要手动操作”错误
为该 API 实现权宜解决方法,使其能按预期运行。 1. 在错误所在的位置打开转换后的 Apps Script 代码。请参阅查找错误。 1. 请参阅函数上方的注释,了解哪些 API 可用于权宜解决方法。 1. 如果您找不到合适的权宜解决方法,不妨考虑从代码中移除该 API。1. 如果您找不到解决方法或无法从代码中移除此 API,并且宏会抛出错误,则无法转换此宏。
“需要手动完成的工作”错误示例
以下是抛出“需要手动操作”错误的 API 示例以及相应的解决方法:
Implement a workaround for Autocorrect.Addreplacement
。Implement a workaround for workbook.open()
。此示例展示了如何使用 Apps 脚本在 Google 云端硬盘中打开文件。
示例 1:Autocorrect.Addreplacement
在以下示例中,可以转换 VBA API Autocorrect.Addreplacement
,但需要使用权宜解决方法。宏转换器会在代码注释中建议如何实现函数。
/** * Could not convert autocorrect.addreplacement API. Please add relevant code in * the following function to implement it. * This API has been used at the following locations in the VBA script. * sheet1 : line 3 * You can use the following Apps Script APIs to convert it. * Apps Script APIs : FindReplaceRequest , onEdit * Apps Script documentation links : * https://developers.google.com/apps-script/reference/script/spreadsheet-trigger-builder#onedit * https://developers.google.com/sheets/api/eap/reference/rest/v4/spreadsheets/request?hl=en#findreplacerequest * Comments : AutoCorrect.AddReplacement was not converted, but there is an * equivalent option you can implement manually. Use onEdit and FindReplaceRequest * APIs instead, see https://developers.google.com/apps-script/reference/script/spreadsheet-trigger-builder#onedit * and https://developers.google.com/sheets/api/eap/reference/rest/v4/spreadsheets/request?hl=en#findreplacerequest. * For more information on API manual implementation, see * https://developers.google.com/apps-script/guides/macro-converter/fix-conversion-errors. * @param {Object} CallingObject represents the parent object using which the API * has been called. * @param {string} What * @param {string} Replacement * @return {string} */ function _api_autocorrect_addreplacement(CallingObject, What, Replacement) { ThrowException('API autocorrect.addreplacement not supported yet.'); }
Autocorrect.Addreplacement
API 的实现如下所示:
var AUTO_CORRECTIONS = "AUTO_CORRECTIONS"; // Need to get the autocorrections set in previous sessions and use them. var savedAutoCorrections = PropertiesService.getDocumentProperties().getProperty(AUTO_CORRECTIONS); var autoCorrections = savedAutoCorrections ? JSON.parse(savedAutoCorrections) : {}; function onEdit(e) { autoCorrect(e.range); } function autoCorrect(range) { for (key in autoCorrections) { // Replace each word that needs to be auto-corrected with their replacements. range.createTextFinder(key) .matchCase(true) .matchEntireCell(false) .matchFormulaText(false) .useRegularExpression(false) .replaceAllWith(autoCorrections[key]); } } /** * Could not convert autocorrect.addreplacement API. Please add relevant code in * the following function to implement it. * This API has been used at the following locations in the VBA script. * sheet1 : line 3 * * You can use the following Apps Script APIs to convert it. * Apps Script APIs : createTextFinder , onEdit * Apps Script documentation links : https://developers.google.com/apps-script/reference/script/spreadsheet-trigger-builder#onedit , createTextFinder * Comments : AutoCorrect.AddReplacement was not converted, but there is an * equivalent option you can implement manually. Use onEdit and FindReplaceRequest * APIs instead, see https://developers.google.com/apps-script/reference/script/spreadsheet-trigger-builder#onedit * and createTextFinder. For more information on API manual implementation, see * https://developers.google.com/apps-script/guides/macro-converter/fix-conversion-errors. * * @param {Object} CallingObject represents the parent object using which the API has been called. * @param {string} What * @param {string} Replacement * * @return {string} */ function _api_autocorrect_addreplacement(CallingObject, What, Replacement) { autoCorrections[What] = Replacement; // Store the updated autoCorrections in the properties so that future executions use the correction. PropertiesService.getDocumentProperties().setProperty(AUTO_CORRECTIONS, JSON.stringify(autoCorrections)); }
示例 2:Workbook.open()
VBA API workbook.open()
会根据文件路径打开本地文件。
假设 VBA 代码中有两个文件由 workbook.open()
打开:
- 文件 1:
C:\Data\abc.xlsx
- 文件 2:
C:\Data\xyz.xlsx
下图展示了宏转换器如何在 Workbook.open()
用于打开文件 1 的所有位置将 Workbook.open()
替换为 Apps Script:
var spreadSheetId = _handle_mso_excel_get_google_spreadsheet_id("C:\Data\abc.xlsx"); var spreadSheet = SpreadsheetApp.openById(spreadSheetId);
unimplemented_constructs.gs
文件中:
/** * Method to return the spreadsheet id manually. * * @param {string} FileName ID of the spreadsheet to be opened. * @return {string} return the spreadsheet id. */ function _handle_mso_excel_get_google_spreadsheet_id(FileName) { // Upload the Excel files being opened by the API to Google Drive and convert // them to Google Sheets. // Determine the spreadsheet ID of the Google Sheets file created. // Implement this method to return the corresponding spreadsheet ID when given //the original file path as parameter. throw new Error('Please return the spreadsheet ID corresponding to filename: ' + FileName); return '' ; }
根据上面示例中的注释,您需要将目标文件转换为 Google 云端硬盘中的 Google 表格文件。
对应的 Google 电子表格 ID 以粗体显示,如下所示:
- 文件 1:
C:\Data\abc.xlsx
变为https://docs.google.com/spreadsheets/d/abc123Abc123Abc123abc
- 文件 #2:
C:\Data\abc.xlsx
变为https://docs.google.com/spreadsheets/d/xyz456Xyz456xYz456xyZ
然后,修改 Apps 脚本函数中的代码,以按 ID 打开文件,如下所示:
/** * Method to return the spreadsheet id manually. * * @param {string} FileName ID of the spreadsheet to be opened. * @return {string} return the spreadsheet id. */ function _handle_mso_excel_get_google_spreadsheet_id(FileName) { // Upload the Excel files being opened by the API to Google Drive and convert //them to Google Sheets. // Determine the spreadsheet ID of the Google Sheets file created. // Implement this method to return the corresponding spreadsheet ID when given //the original file path as parameter if (Filename.indexOf("abc.xlsx") >= 0) { return "abc123Abc123Abc123abc"; } else if (Filename.indexOf("xyz.xlsx") >= 0) { return "xyz456Xyz456xYz456xyZ"; }
故意错误
系统会向转换后的代码添加故意错误,以模拟原始 VBA 代码的错误行为。您无需修改这些错误。
故意错误示例
如果您尝试访问 VBA 中超出数组边界的元素,代码会抛出异常。在 Apps 脚本中,该代码会返回“undefined”。
为避免出现意外结果,宏转换器会添加 Apps 脚本代码,以便在您尝试访问数组边界之外的元素时抛出异常。
以下代码展示了此示例:
原始 VBA 代码Dim arr arr = Array("apple", "orange") MsgBox arr(5) Will throw the following error: Subscript out of range
var arr; arr = ["apple", "orange"]; Browser.msgBox(arr[5]); Will return this value and not throw an error: undefined
/** * Extend the regular JS array to support VB style indexing with a get method. * @returns{*} value at the index */ Array.prototype.get = function() { var curr_res = this; for (var i = 0; i < arguments.length; i++) { if (!Array.isArray(curr_res) || curr_res.length < arguments[i]) { throw new Error(‘Converted VBA Error (Intentional Error): Subscript out of range’); } curr_res = curr_res[arguments[i]]; } return curr_res; }; var arr; arr = ["apple", "orange"]; Browser.msgBox(arr.get(5));