英文:
Excel: how to return data of the last weekday?
问题
以下是提取前一个工作日数据(B列)的公式:
=INDEX(B2:B5,MATCH(WORKDAY(TODAY(),-1),A2:A5,1))
这个公式将根据今天的日期,查找前一个工作日的数据。如果你在星期一打开文件(4月17日),公式将返回1。如果你在星期二打开文件(4月18日),公式将返回80。希望这有所帮助。
英文:
| Column A | Column B |
| 14/4 | 1 |
| 15/4 | 100 |
| 16/4 | 70 |
| 17/4 | 80 |
What is the formula I could use to extract the data (column B) of previous weekday please?
So if I open the file on monday (17 april), formula should return 1. If I open the file on tuesday (18 apr), formula should return 80.
Thanks in advance for your help.
答案1
得分: 2
使用在A1:B6
范围内的数据,使用公式=XLOOKUP(WORKDAY(TODAY(),-1),$A$1:$A$6,$B$1:$B$6)
。
英文:
With your data in A1:B6
use the formula =XLOOKUP(WORKDAY(TODAY(),-1),$A$1:$A$6,$B$1:$B$6)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论