英文:
Identify Values in One Column that are Next to a blank cell
问题
我有两列数据,并且希望识别并使用公式填充列C,其中包含在列A中的空单元格旁边的所有列B中的值。
因此,列C将以"NY-ELA.PK.SL.1"开头,因为这是第一个与空单元格相邻的值。
英文:
I have two columns with data, and I'm wanting to identify and have a formula populate column C with all the values in column B that are next to a blank cell in column A.
So column C will start with "NY-ELA.PK.SL.1", since that is the first value that is next to a blank cell.
| **equivalent_ccss_standard**| **standard_long_ref** | **Unused_NY_refs** |
|-----------------------------|-------------------|-----------------|
| CCSS.ELA-Literacy.CCRA.SL.1 | NY-ELA.A.SL.1 | |
| CCSS.ELA-Literacy.CCRA.SL.2 | NY-ELA.A.SL.2 | |
| CCSS.ELA-Literacy.CCRA.SL.3 | NY-ELA.A.SL.3 | |
| CCSS.ELA-Literacy.CCRA.SL.4 | NY-ELA.A.SL.4 | |
| CCSS.ELA-Literacy.CCRA.SL.5 | NY-ELA.A.SL.5 | |
| CCSS.ELA-Literacy.CCRA.SL.6 | NY-ELA.A.SL.6 | |
| | NY-ELA.PK.SL.1 | |
| | NY-ELA.PK.SL.1.a | |
答案1
得分: 1
=filter(B:B,not(A:A)) 可以尝试:
英文:
You may try:
=filter(B:B,not(A:A))
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论