B
Bobby
Hi, is it possible to turn off the select(cursor) cells with VBA code?
Thank's ahead
Thank's ahead
Hi, is it possible to turn off the select(cursor) cells with VBA code?
Bobby said:Hi, is it possible to turn off the select(cursor) cells with VBA code?
Thank's ahead
Norman said:And if Ken's interpretation is correct, perhaps try:
Selection(1).Select
That's a new one for me.
Can you explain this use of selection?
Thanks Norman, it all makes sense now, Selection(2).Select results inNorman said:In the case of your example (Range("B1:B5"), the resultant selection would
become B1.
Could simply do Activecell.Select then, might be more logical than just
the
first cell in range (then again, might not <g>).
Sorry if my question was not clear!Norman said:Hi Bob,
I could see an arguable case for either suggestion.
That said, I would suggest that the OP render the choice immaterial by
endeavouring to avoid the initial selection.
My question is, is
it possible to turn off(with a VBA command) the cell selection use by
default by EXCEL?(In my case "A1"cell. No square around no cell!).