Mirroring an offset

W

Wendy

Hi, sorry if this a simple one, but I'm not thinking very clearly today. I
have a range of cells to model a theatre seating plan; using the
worksheet_selectionChange, the seats are selected and the seats/cells are
coloured.

I have another range similar to the seating plan, one column to the right of
the seating plan, when the seats are selected, I want the cells on the right
side to be filled with a booking value(name obtained through a user form text
box). How do I programmatically work out the horizontal offset with the
current target cell address?

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Target.Interior.ColorIndex = 3
BookingRange=Target.cells.address
fmBooking.Show
BookingRef=Booking.text

---Here I'm stuck---
New range.offset.value = BookingRef

End Sub

Many thanks for your help.
 
I

Ivyleaf

Hi Wendy,

Not sure if I understand correctly, but I think this will do it,
assuming you want the name one cell to the right of the booking range.
Note that I have changed Target to ActiveCell. Target will give you an
entire range, ActiveCell just gives you the single active cell which I
am assuming is what you are after. The danger with Target in this case
would be that if someone accidentally selected more than one cell, all
cells selected will be coloured.

Dim BookingRef As String, BookingRange As Range

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
ActiveCell.Interior.ColorIndex = 3
Set BookingRange = ActiveCell
fmBooking.Show
BookingRef = Booking.Text

BookingRange.Offset(0, 1) = BookingRef
End Sub

Cheers,
Ivan.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top