[Calc] How would I go about adding multiple functions to one keyboard shortcut?

[Windows 10, 64 bit, LibO version 6.2]
Javascript Developer, latest version of JRE

I’m trying to set up my keyboard shortcuts to copy the cells and delete the cells.

I cannot select multiple functions for the custom keyboard short cut, since I cannot do it this way, I’d like to create my own function to be listed for the keyboard shortcuts that allow me to copy all of the selected cells, and then delete them, or if it can be done, an explanation of how, I’ve considered custom macros outside of LibO that use a combination of different key strokes, but I would much rather employ those directly into LibO instead.

This isn’t the entirety of the problem I’m attempting to resolve, it’s just the clearest representation of what it is I am trying to do.

There may well be more than one good solution to this problem, but we need to know all relevant information (OS, LibO version, etc.). Please edit into your question - thanks!

Thank you for your response, I’ve updated the question with more details

One way would be to write a “Wrapper function/macro”,
which simply calls the other functions in sequence.

Sub  Wrapper
   func1()
   func2()
End Sub

And bind that to the shortcut.
But depending on the needed function argument this might be quite a bit of work.

Hope it still helps (somebody)