ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   What is the proper syntax (https://www.excelbanter.com/excel-programming/372504-what-proper-syntax.html)

Barb Reinhardt

What is the proper syntax
 
I have the following in a worksheet change event

If Target.Offset(0, 1).Value Target.Offset(-1, 1).Value And _
Target.Offset(0, 2).Value Is Not blank And _
Target.Offset(0, 3).Value Is Not blank And _
Target.Offset(0, 4).Value Is Not blank And _
Target.Offset(0, 5).Value Is Not blank And _
Target.Offset(0, 6).Value Is Not blank And _
Target.Offset(0, 7).Value Is Not blank Then

end if

I'm not sure this is correct. I need to check to see that these cells are
blank and if they aren't, I want to do something else.

Thanks in advance

Die_Another_Day

What is the proper syntax
 
If Target.Offset(0, 1).Value Target.Offset(-1, 1).Value And _

Application.CountBlank(Range(Target.Offset(0,2)),T arget.Offset(0,7))) =
0 Then

Charles Chickering

Barb Reinhardt wrote:
I have the following in a worksheet change event

If Target.Offset(0, 1).Value Target.Offset(-1, 1).Value And _
Target.Offset(0, 2).Value Is Not blank And _
Target.Offset(0, 3).Value Is Not blank And _
Target.Offset(0, 4).Value Is Not blank And _
Target.Offset(0, 5).Value Is Not blank And _
Target.Offset(0, 6).Value Is Not blank And _
Target.Offset(0, 7).Value Is Not blank Then

end if

I'm not sure this is correct. I need to check to see that these cells are
blank and if they aren't, I want to do something else.

Thanks in advance




All times are GMT +1. The time now is 06:18 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com