I know the basics of excel, making equations and the like, but I am told that in order to make if statements that control formatting I will have to use VBA. I am completely new to VBA but not to programming as a whole. Any help or pointers to where I can learn about this specific issue would help.
Ideally I'm trying to make it so when the inventory count on the item is 0, the entire row is coloured light grey.
step 2 would be if the "state" column reads "New" then colour it blue, red for "untested"
basically:
IF F44>0 AND D44="New"{
Row44textcolour="blue"
}
ELSEIF F44>0 AND D44="Untested"{
Row44textcolour="red"
}
ELSEIF F44>0{
Row44textcolour="black"
}
ELSE Row44textcolour="light grey"
any suggestions?
Bookmarks