VBA to Conditionally Format Top & Bottom Values in Excel Chart
This video demonstrates how to write the VBA code needed to conditionally format the top and bottom values displayed in an Excel Chart. The code featured in the video can be found below. Private Sub Worksheet_Change(ByVal Target As Range) Dim ch As Chart Dim s As Series Dim i As Byte Set ch = ActiveSheet.ChartObjects(1).Chart… Read More »VBA to Conditionally Format Top & Bottom Values in Excel Chart