Related:
- Copy cell range with function
- Mutator function c++ - Guide
- Hard drive function - Guide
- Network card function - Guide
- What function can automatically return the value in cell c77 - Excel Forum
- Based on the values in cells b77 b88 what function can - 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