Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这张表,可以看作是一个基本的自定义甘特图:
而且我想根据同一行上范围的第一个填充单元格及其相应列(第 1 行)的标题值,用开始日期填充 A 列。显示我的预期结果比实际编写它更容易:
非常感谢您的帮助!
在 A2 中试试这个公式复制下来
=IF(COUNTA(B2:Z2),INDEX(B$1:Z$1,MATCH(TRUE,INDEX(B2:Z2<>"",0),0)),"")
您可能必须使用所需的日期格式格式化 A 列
假设数据到 Z 列,根据需要进行调整