Make an add-in available in Excel 2016 for Windows

偶尔善良 提交于 2019-12-13 17:25:00

问题


Following this thread, I have modified the manifest file of my two add-ins, and resubmitted to the store. Yesterday, I got a mail to say one is approved, and today I got another mail to say the other one is approved as well.

However, I could not find them in Excel 2016 for Windows. Then I go to the web page of the Office Store. I could find the two add-ins, but I see in their page: This add-in requires one of the following applications: Excel 2016 for Mac, that's it, it does NOT mention Excel 2016 for Windows. (I have not checked them in Excel 2016 for Mac, because I have not installed Excel 2016 for Mac).

The follows is the part related to version in their manifest file. So does anyone know how to modify this to make the add-in available in Excel 2016 for Windows, where my add-ins work fine.

Moreover, once I modify their manifest, I should unpublish the add-ins, and then re-submit them?

<?xml version="1.0" encoding="UTF-8"?>
  <Hosts>
    <Host Name="Workbook" />
  </Hosts>
  <Requirements>
    <Sets>
      <Set Name="ExcelApi" MinVersion="1.2"/>
    </Sets>
  </Requirements>
  <DefaultSettings>
    <SourceLocation DefaultValue="...Home.html" />
  </DefaultSettings>
  <Permissions>ReadWriteDocument</Permissions>

回答1:


Your manifest is correct for enabling an add-in in Excel 2016 for Windows, Mac, and Excel Online.

It's possible that the validation team manually tagged your add-in to not support Excel 2016 for one of the following reasons:

  • You specified in the description or the "Testing Notes" field that the add-in shouldn't be supported on Excel 2016 for Windows.
  • The validators found a bug that was specific to Windows. Normally if that happened they would reject your submission at least once first and include an explanation in the report. So check all your previous submission reports for information.

If none of the above are the reason, then there was some other problem during validation, perhaps a bug. On your Seller Dashboard page:

  1. Scroll to the bottom and click Support:
  2. Problem type: App submission and validation
  3. Category: App validation results
  4. Start email (the team with expertise here is in Europe, so the chat/call is likely to be unsuccessful during North American business hours)
  5. Describe the issue briefly/politely, including links to your add-ins, and submit


来源:https://stackoverflow.com/questions/38618005/make-an-add-in-available-in-excel-2016-for-windows

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!