Code – Delete shapes in worksheet
Helping others at work not only benefits those we are helping, but it can also have a positive impact on ourselves. When we assist our coworkers, we are able to deepen our relationships with them and improve team cohesion. This can lead to a more enjoyable work environment and a sense of satisfaction and purpose in our own work.
Additionally, helping others can also enhance our own skills and knowledge. By teaching or mentoring our coworkers, we are able to reinforce our own understanding of the subject matter and potentially learn new things as well.
Furthermore, helping others can also lead to professional growth and advancement. By demonstrating our willingness to assist and support our colleagues, we can showcase our leadership abilities and team-oriented mindset, which can lead to new opportunities and responsibilities within the company.
In summary, helping others at work not only benefits those around us, but it can also have a positive impact on ourselves by improving relationships, increasing skills and knowledge, and leading to professional growth.
In this instance, I had worked with Meghna Mudhol on a simple VBA request. We managed to solve the problem at hand and definitely built trust and a unique camaraderie.
Sub Delete_Shape()
Dim shp As Shape
For Each shp In ActiveSheet.Shapes
shp.Delete
Next shp
End Sub