Please explain this line of code

ipbr21054

Well-known Member
Joined
Nov 16, 2010
Messages
5,602
Office Version
  1. 2007
Platform
  1. Windows
My userform is shown.

This is a line of code in use.
VBA Code:
If Worksheets("POSTAGE").Cells(lastRow + 1, 11).Value = "" Then MsgBox "THERE ISNT A YES / NO VALUE IN SECURITY CELL", vbCritical, "SECURITY MESSAGE"

I trelates to the SECURITY MARK Yes / No option buttons.
Please advise what the +1, 11 is related to.

Basically i wish to use the same line of code for the PHOTO HYPERLINK question below BUT dont know where the +1,11 came from.
Please advise so i can use the correct figues for it to then work
 

Attachments

  • EaseUS_2024_08_15_09_51_10.jpg
    EaseUS_2024_08_15_09_51_10.jpg
    168.1 KB · Views: 7

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
11 is the column number (so column K) and the + 1 is added to your lastRow variable, so it's checking the row number below whatever value that is.

You can actually use the column letter instead, which is usually clearer to read:

Code:
Worksheets("POSTAGE").Cells(lastRow + 1, "K")
 
Upvote 0

Forum statistics

Threads
1,221,418
Messages
6,159,791
Members
451,589
Latest member
Harold14

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top