Related:
- Copy cell range with function
- Find function on mac - Guide
- Accessor function c++ - Guide
- Spreadsheet function - Guide
- Apple airtag range - Guide
- Agp function - Guide
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