Fill an offset if checkbox is True

Eddy2

New Member
Joined
Mar 2, 2017
Messages
27
Hi
In a table: I am trying to fill an offset of multiple checkboxes, only if their state is True.

I came up with this code which most of the time fills ALL the adjacent cells, even the one which state is False. The strange thing is that sometimes the code seams to work. Any idea?

Code:
Private Sub InnOtraKunde_Click()
    Dim strFormulas As String
    Dim i As Integer
      
      strFormulas = "=IFERROR([@[Otra_]]*((1-[@[% Avslag Enhetspris kunde]])),""-"")"
      
       For i = 2 To 39
          If ActiveSheet.OLEObjects("CheckBox" & i).Object.Value = True Then
          OLEObjects("CheckBox" & i).TopLeftCell.Offset(0, -1).Value = strFormulas
                
            End If
    Next i
    
End Sub
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Follow-up: The code works if the first- or the last offset cell has a value. If they ar empty it fills all the offset cells.
 
Last edited:
Upvote 0
Its the "=" sign in the formula which messes up the code: "=IFERROR([@[Otra_]]*((1-[@[% Avslag Enhetspris kunde]])),""-"")"

Does anyone have a workaround for this?
 
Upvote 0

Forum statistics

Threads
1,223,894
Messages
6,175,250
Members
452,623
Latest member
Techenthusiast

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top