I'm new to VBA, and I'm trying to make a simple macro where you can select a set of cells, click a button and cross out selected sales. After that, you can select the cell again, press the same button and delete the strikethrough.
I was looking for decent documentation, but haven't found anything yet.
Here is the code.
Also, I would be interested to know where the best VBA documentation is.
Sub strikeOut() Selection.Font.Strikethrough = True End Sub
I also need help with a command button.
Thanks.
source share