Sub HelloWorld()
' Simple macro example
Dim ws As Worksheet
Set ws = ActiveSheet
ws.Range("A1").Value = "Hello World!"
ws.Range("A1").Font.Bold = True
ws.Range("A1").Font.Color = RGB(255, 0, 0)
MsgBox "Macro executed successfully!", vbInformation
End Sub