Today I finaly set up a #VBAMacro in #Excel to add conditional formatting to set cells =0 as light grey.
Small thing, but I find it helpful.

Save this in Personal.xlsb, add a Quick Access shortcut

Sub GreyZero()
' GreyZero Macro
' Format selected cells with contitional formatting to set zero values to light grey
'
Selection.FormatConditions.Add Type:=xlCellValue, Operator:=xlEqual, Formula1:="=0"
With Selection.FormatConditions(1).Font
.Color = -1381654
End With
End Sub

Found an old #vbamacro I used to use weekly - it so satisfying looking at it, and seeing how I can improve it super easily
Means I’m getting better
Microsoft Outlook Users Targeted By Gamaredon’s New VBA Macro - The Gamaredon APT has started using a new VBA macro to target Microsoft Outlook victims' contact l... more: https://threatpost.com/microsoft-outlook-users-targeted-by-gamaredons-new-vba-macro/156484/ #uncategorized #spearphishing #websecurity #gamaredon #microsoft #vbamacro #otmfile #outlook #apt
Microsoft Outlook Users Targeted By Gamaredon's New VBA Macro

The Gamaredon APT has started using a new VBA macro to target Microsoft Outlook victims' contact lists.

Threatpost - English - Global - threatpost.com