Thread: inputbox ?
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default inputbox ?

Declare a variable that represents that range. And then use that variable the
way you want.

Dim InputCell as range
dim ck as range

set ck = activesheet.cells(1,3)

Set inputcell = nothing
on error resume next
set inputcell = application.inputbox(Prompt:="dog?", _
title:="Animal", default:=ck.address, type:=8).cells(1)
on error goto 0

if inputcell is nothing then
'user hit cancel
else
msgbox inputcell.address & vblf & inputcell.value
end if




sunilpatel wrote:

i have the following
set ck=cells(1,3)
INPT$ = RTrim(Application.InputBox("dog" & "?", "animal", CK.Address, , , ,
, 8))

when a cell is clicked INPUT$=contents of clicked cell. This is what i want
but i also require the cell address clicked.

Please note Application.ScreenUpdating = False


--

Dave Peterson