PDA

View Full Version : Solved: How to detect multiple cell selection



leeweaver
07-22-2008, 06:42 AM
I need to detect if multiple cells are selected. but I'm unsure of how to do this.

Lee:bug:

JimmyTheHand
07-22-2008, 06:45 AM
If Selection.Cells.Count > 1 Then

End If

mdmackillop
07-22-2008, 09:58 AM
To be pedantic

MsgBox Selection.Cells.Count * ActiveWorkbook.Windows(1).SelectedSheets.Count


as I found out when my Copy utility failed!

leeweaver
07-23-2008, 06:28 AM
Thank you for the help that is exactly what I needed.

Jimmy the Hand: I thought I gave all pertinent details, what was lacking in my question?

JimmyTheHand
07-23-2008, 08:32 AM
I thought I gave all pertinent details, what was lacking in my question?


Nothing wrong there. That was only my signature, which you can see below all my posts. Sorry for the misunderstanding.

Jimmy