在另一个子例程中运行一个子例程-编译错误:参数不是可选的

Sub StoreQA(ShapeClicked As Shape)
MsgBox "yeee"
End Sub

Sub ThisIsToBeRun()
StoreQA
End Sub

I get Compile Error: Argument not optional. I tried mentioning StoreQA(ShapeClicked As Shape) but that didn't help either.