This code applies conditional formatting to the selected range based on a specific condition.
VBA Code:
Sub SetConditionalFormatting()
Dim conditionRange As Range
Dim condition As FormatCondition
Set conditionRange = Selection
Set condition = conditionRange.FormatConditions.Add(Type:=xlCellValue, Operator:=xlLess, Formula1:="0")
With condition
.Interior.Color = RGB(255, 0, 0)
.Font.Color = RGB(255, 255, 255)
End With
End Sub
Dear sir,
Please Attechment a Small training video with Every one VBA code for better help and support for This VBA code related to your suggestions
Sure i will try to make..Thanks