View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jim Thomlinson[_5_] Jim Thomlinson[_5_] is offline
external usenet poster
 
Posts: 486
Default refedit control cryptic returned value

This gives you row and column of the top left and bottom right.

Dim rng As Range

Set rng = Range(RefEdit1.Text)

MsgBox rng(1).Row
MsgBox rng(1).Column
MsgBox rng(rng.Count).Row
MsgBox rng(rng.Count).Column

The only difference is it uses numbers instead of letters for the columns.
Generally the numbers are more useful, but you could convert that to letters
if that is what you require...
--
HTH...

Jim Thomlinson


" wrote:

I am using the refedit control on my userform. That works fine. I
would like to see something other than the cryptic value that it
passes.
For example the value that I get from using refedit is:
sheet1!$A$3:$D$5

I would like four values that are put into variables
A
3
D
5

How might I achieve this.
Mary