Discussion:
VB判斷儲存格是否空白
(时间太久无法回复)
Chiung
2004-10-12 02:53:04 UTC
Permalink
欲判斷儲存格內是否沒有輸入任何資料,以下是我的語法
但是無法達到要求,不知那裡有錯,thanks!!

Cells(i, 4).Text <> Null
icdee
2004-10-12 04:01:06 UTC
Permalink
Cells(i, 4).Text <> Empty
Null 與Empty 不同
null =>不含有效資料
empty =>空字串

其實一般我常用
cells(i,4)="" or len(cells(i,4))=0
判斷儲存格是否空白
而後者效率較佳
若有錯誤亦請不吝指正
Chiung
2004-10-13 05:19:04 UTC
Permalink
感謝你的回覆!!thanks

"icdee" 來函:
Post by icdee
Cells(i, 4).Text <> Empty
Null 與Empty 不同
null =>不含有效資料
empty =>空字串
其實一般我常用
cells(i,4)="" or len(cells(i,4))=0
判斷儲存格是否空白
而後者效率較佳
若有錯誤亦請不吝指正
继续阅读narkive:
Loading...