In this subroutine I would like to have the result appear as HP 19" CRT Monitor, but I cannot figure out how to make it work. It's easy to make it work if it's a 19-foot monitor, as this code does. How do I get VBA to display inches, instead?
Sub LongItemNameForAssets()
Select Case Range("C2").Text
Case "19"
Range("D2").Value = """HP 19" & "'" & " CRT Monitor"""
End Select
End Sub
Sub LongItemNameForAssets()
Select Case Range("C2").Text
Case "19"
Range("D2").Value = """HP 19" & "'" & " CRT Monitor"""
End Select
End Sub