Hello World:
Need advice or an example of how to loop through a range of cells to execute the below Select Case Statement for Each occuring case.
Example: If the value of "Windows 7 Enterprise 64 bit Edition Service Pack 1" occurs in any of the cells in Range R2, then each cell in the correspondeing cell location in Range AV2 should enter a value that reads "End User Support" and then so on for each successive Case. Let me know if I'm not clear on this please!
Code
Sub EndUserSupport()
Select Case Range("R2").Value
Case "Windows 7 Enterprise 64 bit Edition Service Pack 1"
Range("AV2).Value = "End User Support"
Case "Windows XP"
Range("AV2").Value = "End User Support"
Case "HP LaserJet"
Range("AV2").Value = "End User Support"
End Select
End Sub
Display More
Please and Thank you