当前位置:首页经验技巧Excel经验excel函数

excel中a列怎么筛选b列

2024-07-26 11:07:29

1.EXCEL表中,如果A列包含B列的值,如何在C列中体现出来

使用excel宏可以实现如上功能!

sub check()

dim numa as integer //A列行数

dim numb as integer//B列行数

dim num as integer

numa=50

numb=50

num=1

for i=1 to numa

for j=1 to numb

if sheet1.cells(1,i).value==sheet1.cells(2,j) then

shee1.cells(3,num)=sheet1.cells(1,i)

num=num+1

end if

next j

next i

end sub


电脑版

免责声明:本站信息来自网络收集及网友投稿,仅供参考,如果有错误请反馈给我们更正,对文中内容的真实性和完整性本站不提供任何保证,不承但任何责任,谢谢您的合作。
版权所有:五学知识网 Copyright © 2015-2024 All Rights Reserved .