Hi!
This should work for you.
I've tested it in your workbook.
Insert this in the userform code.
Private Sub RooftypeBox_Change()
Dim M As Range
Dim C As Range
Set M = Worksheets("tables").Range("A58:G58").Find(showclimatezone, Lookat:=xlWhole)
Set C = Worksheets("tables").Range("A64:G64").Find(showclimatezone, Lookat:=xlWhole)
RoofV = RooftypeBox.Value
Value1 = "Metal Sheeting"
Value2 = "Clay Tiles"
If RoofV = Value1 Then
RoofRV = M.Offset(1, 0)
CeilingRV = M.Offset(2, 0)
End If
If RoofV = Value2 Then
RoofRV = C.Offset(1, 0)
CeilingRV = C.Offset(2, 0)
End If
End Sub
Bookmarks