Related:
- Copy cell range with function
- Network card function - Guide
- Function key stuck on - Guide
- Selection.autofill destination:=range ✓ - Excel Forum
- Multiple functions in one cell - Excel Forum
- Highlight cell if another cell contains text ✓ - Excel Forum
1 response
Not sure that I'm am clear on the explanation. But, instead of having two separate buttons, try inserting your first macro in a module then you can "call" macro one in just one set of instructions.
Here is a part of code that I have used in one of my macros to give you an example:
If Not IsEmpty(Range("C" & EndRow)) Then
Range("D3") = Range("C" & EndRow)
Else
Call Week2
End If
Here is a part of code that I have used in one of my macros to give you an example:
If Not IsEmpty(Range("C" & EndRow)) Then
Range("D3") = Range("C" & EndRow)
Else
Call Week2
End If