I'd like to create a macro on Excel to highlight a range of cells when the date in a particular cell changes. The cell draws the date information from Bloomberg (BDP formula), and the workbook refreshes daily.
I've tried this solution:
Private Sub Worksheet_Change(ByVal Target As Range)
However, it only works when the formula in the cell changes, and not when the cell automatically updates the date information when refreshed.
Is there a simple solution to my problem?