更新Excel公式的先例
有什么方法可以要求 excel 更新公式的先例
如果我们提供所有详细信息,例如……假设在单元格 D1 =“=SUM(B1:B20)”中
,现在在数据导出后,我们知道数据是 B5, :B50
那么我们如何要求 Excel 更新单元格 D1 中的公式,例如“=Sum(B5:B50)”
,否则我们将不得不进行字符串替换。
Is there any way to ask excel to update the precedents of a formula if we provide all details like....
suppose in cell D1 = "=SUM(B1:B20)"
now after data got exported then we know that data is B5:B50
then how can we ask excel to update the formula in cell D1 like "=Sum(B5:B50)
or we will have to string replacements.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为 B1:B20 范围指定一个名称:突出显示 B1:B20,单击名称框(编辑栏左侧)并键入名称。然后您可以在 SUM 公式中使用该名称。当数据移动时,更新 Excel 2003“插入”菜单上的范围位置,位于“范围”>“范围”。定义。
或者,如果导出后左上角的单元格保留在同一位置(即单元格 B1 中),您可以创建一个 Excel 列表来表示数据:突出显示 B1:B20 并右键单击它,然后单击“创建列表”。如果将行添加到列表底部,Excel 会自动更新引用它的任何公式。
You could assign a name to the B1:B20 range: highlight B1:B20, the click on the name box (to the left of the formula bar) and type a name. You can then use that name in your SUM formula. When the data moves, update the location of the range on the Excel 2003 Insert menu, at Range > Define.
Alternatively, if the top-left cell stayed in the same place after the export (i.e. in cell B1), you could create an Excel list to represent the data: highlight B1:B20 and right-click on it, then click Create List. If you add rows to the bottom of a list, Excel automatically updates any formulae that refer to it.