背景
在获取输入源时出现了表格没有数据,而导致数据异常的情况,
需求
当异常出现时,显示其他的数据
方法
在代码中添加
in 的后面,添加try otherwise,
参考代码如下
= let
Source = Pdf.Tables(Web.Contents(
"https://bh-pmweb-szhp.bosch.com",
[
RelativePath="/23.pdf"
]
), [Implementation="1.3"]),
Table001 = Source{[Id="Table001"]}[Data],
#"Removed Top Rows" = Table.Skip(Table001,1),
in
try #" Removed Top Rows "
otherwise
let
Source = "此处为异常时需要显示的数据,可以使用输入数据的方式,"
in
#"Changed Type"
``![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/b828e20e4c5447c9882a4bf232352ab6.png#pic_center)