Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have CommandButton that when you click on it, it triggers a Form with a
List and when you click on an value then it pastes the value from the list into the selected cell (B5). Also it will check for the value in cell E1 in the sheet named "formula" and then it will Offset 3 cell(E5). Here is the problem, I want for the macro only to execute in the range on B5:B159 and if not in range B5:B159 then a message would say something like "Select a Cell in Column B". I have columns D and F with formulas and if anyone chooses an unlocked (column C, D or E) the 3dr cell changes even if it is locked. Here is a piece of code of what I have at the moment. I really appreciate your response, Thanks Private Sub CommandButton1_Click() If lstSelection.ListIndex = -1 Then MsgBox "No item selected", vbExclamation Exit Sub End If Range("SelectionLink") = lstSelection.ListIndex + 1 Selection.Cells(1) = Worksheets("Formulas").Range("D1") Selection.Cells(1).Offset(0, 3) = Worksheets("Formulas").Range("E1") Unload Me End Sub Private Sub CommandButton2_Click() Unload Me End Sub Private Sub lstSelection_Click() End Sub Private Sub UserForm_Click() End Sub KBREnner |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Create macro to calculate data range for a running chart | Excel Worksheet Functions | |||
Running a macro if any data is entered in a range of cells | Excel Worksheet Functions | |||
Eliminating Excel msgbox from popping up while macro is running. | Excel Programming | |||
Running a macro if msgbox is yes | Excel Programming | |||
Predetermine Worksheet to Start In | Excel Programming |