Excel中如何根据IF条件将公式应用于单元格
我有一个 Excel 电子表格,如下所示
A B
10.02.2007 10
10.03.2007 12
A 列是日期,B 是股票价格
现在我的任务是使用公式计算股票的财务回报
return = ln(price_today / price_yesterday)
现在在另一个电子表格中我需要创建一个名为 Return 的新列 在本列中,我需要放置类似 = ln(B2/B1)
的公式 但条件是此公式仅适用于 A 列中的日期在范围内 开始日期 <当前日期 <结束日期
。
因此,我只想将
- 我的公式仅应用于特定时期,例如仅到 2007 年,
- 将新列放置在从给定位置(例如 A1)开始的另一个电子表格中,
请建议
I have an Excel spreadsheed like the one shown below
A B
10.02.2007 10
10.03.2007 12
Column A is date and B is price of share
Now my task is calculate financial return of share using formula
return = ln(price_today / price_yesterday)
Now in another sreadsheet I need to create a new column called Return
In this column i need to place formula like = ln(B2/B1)
but on condition that this formula is only applied date in column A is in rangeStartDate < currentDate < EndDate
.
So I want to
- apply my formula only to specific period say only to 2007 year
- have new column placed in another spreadsheet starting from given location say A1
Please suggest
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要引用另一个工作簿中的单元格,您需要使用类似的内容
要查找年份编号,您需要确保该列是有效的日期列,并使用类似的内容
也可能 Excel: And Function 允许
StartDate
当前日期 <结束日期
To reference a cell in another workbook you need to use something like
To find the year number you need to ensure that the column is a valid Date column, and use something like
And also maybe Excel: And Function to allow for the
StartDate < currentDate < EndDate