i’m using a user form that has a checkbox, when i check the checkbox the result in my spreadsheet is either true or false, but i need it to be yes or no.
i have tried numerous codes that are out there in the search database but i’m doing something wrong can anybody assist please….
if me.checkbox1.value = "" then me.checkbox7.setfocus end if
that just gives me true or false
I have also tried this
Private Sub cmdenter_click() If checkbox1 = True Then ActiveCell.Offset(0, 0).Value = "Yes" Else ActiveCell.Offset(0, 0).Value = "No" End If If checkbox2= True Then ActiveCell.Offset(0, 1).Value = "Yes" End If End If End Sub
I need the output to go into column 52 or BB and it has to progress downward from bb1 to bb2 etc for every new entry.
its 4 am and i have been at this since noon – can anybody help me out