Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/reporting-services/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Reporting services 已删除功能:来自/xl/worksheets/sheet1.xml部分的超链接_Reporting Services_Export To Excel_Ssrs 2012 - Fatal编程技术网

Reporting services 已删除功能:来自/xl/worksheets/sheet1.xml部分的超链接

Reporting services 已删除功能:来自/xl/worksheets/sheet1.xml部分的超链接,reporting-services,export-to-excel,ssrs-2012,Reporting Services,Export To Excel,Ssrs 2012,我正在使用SSRS 2013,当我想要导出包含某些页面超链接的报告时,我遇到了问题。这只发生在Excel中,而不是在CSV中,当我有大量数据时(超过50000行,每行有一个指向某个用户名的超链接) 以下是我要导出到Excel时收到的错误日志消息: error237240_01.xmlErrors 在文件中检测到 “E:\VIP.xlsx”Excel已完成文件 级别验证和修复。此工作簿的某些部分可能已被删除 已修复或丢弃。已删除功能:中的超链接 /xl/worksheets/sheet1.xml

我正在使用SSRS 2013,当我想要导出包含某些页面超链接的报告时,我遇到了问题。这只发生在Excel中,而不是在CSV中,当我有大量数据时(超过50000行,每行有一个指向某个用户名的超链接)

以下是我要导出到Excel时收到的错误日志消息:

error237240_01.xmlErrors 在文件中检测到 “E:\VIP.xlsx”Excel已完成文件 级别验证和修复。此工作簿的某些部分可能已被删除 已修复或丢弃。已删除功能:中的超链接 /xl/worksheets/sheet1.xml 部分


可能是什么问题?如何解决此问题?

我猜您的URL超链接无效

我真的不知道SSR,但下面的文档可能会解决您的问题

我有类似的问题(来自另一个来源,而不是SSR)与
删除的功能:超链接
-也许这有助于您:

我发现,我的工作表中有无效的超链接

对于某些超链接,有两个带有
Target
的超链接,如:
hyp1)
http://www.domedomain.org,www.anotherdomain.com

hyp2)
https://www.example.com http://www.sometnihg.net http://www.test.com

(无效的hyperelinks)

我已将其更改为以下内容:
hyp1)
http://www.domedomain.org

hyp2)
https://www.example.com

(真实有效的超链接)

现在一切似乎都在运转

您可以解压缩xlsx文件并查找xml文件
/xl/worksheets/_rels/sheet1.xml.rels
超链接定义如下

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
    ...
    <Relationship Id="rid1" Target="http://www.example.com" TargetMode="External" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink"/>
    <Relationship Id="rid2" Target="http://www.example2.com" TargetMode="External" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink"/>
    ...
</Relationships>

...
...
并查找目标属性内容