Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi all, Is there any way in VBA it make the value of any cell that is clicked on available to be used in the code. For example, if you had a range of numbers and the user clicked on any one of the cells; that value they clicked on would then be available to be used in VBA, such as in a function. Below is what I'm trying to achieve. The Sub and function below are in a module. The idea is that the cell that the user clicks on is placed into memory and becomes available to be used any where. --------------------- Sub PutMemoryTestNumber(NewMemoryTestNumber As Single) sngMemoryTestNumber = NewMemoryTestNumber End Sub Function fnMemoryTestNumber() As Single fnMemoryTestNumber = sngMemoryTestNumber End Function -------------------- The subroutine below is in the form where the user clicks on the cell. -------------------- Private Sub Worksheet_SelectionChange(ByVal Target As Range) PutMemoryTestNumber THIS IS WHERE I WOULD LIKE TO ADD THE VALUE OF THE CELL THAT THE USER HAS CLICKED ON End Sub ------------------- The cell that the user has clicked on would be placed into the subroutine PutMemoryTestNumber which would then be available to the function. Does this make sense? Any help would be greatly appreciated. Best Regards, Aaron -- Aaron1978 ------------------------------------------------------------------------ Aaron1978's Profile: http://www.excelforum.com/member.php...o&userid=31201 View this thread: http://www.excelforum.com/showthread...hreadid=548156 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Reading Data from a User Form. | Excel Programming | |||
Change cell value when right-clicked/double-clicked | Excel Programming | |||
Code needed to test if user clicked a button | Excel Programming | |||
reading a user-set autofilter value | Excel Programming | |||
How do I check if a user clicked the Print Cancel button | Excel Programming |