hello all, I have a combo box in a user form that is using this
Private Sub UserForm_Initialize()
'Populate combo box.
Dim rngBoProbsOpps As Range
Dim ws As Worksheet
Set ws = Worksheets("Sheet2")
Me.cmbProblemsOpps.RowSource = "BoProbsOpps"
End Sub
and this in my spreadsheet
=OFFSET(Sheet2!$A$2:Sheet2!$B$2, 0, 0, COUNTA(Sheet2!$A:$A:Sheet2!$B:$B)-1,2)
it work fine for days then I get an error on my user form and go to the spreadsheet and the formula has ref! errors like
=OFFSET(Sheet2!#REF!:Sheet2!#REF!, 0, 0, COUNTA(Sheet2!$A:$A:Sheet2!$B:$B)-1,2)
Anyone know what could be causing this, I am continuing to build other form sections and test but this keeps happening.
Thanks