replace zero with balance by checkbox on userform and returning

Abdo

Active Member
Joined
May 16, 2022
Messages
251
Office Version
  1. 2019
  2. 2010
Platform
  1. Windows
hello,
I have combobox1,checkbox1 and many sheets
and data in sheets
ABDO.xlsm
ABCDEF
1ITEMNAMEDEBITCREDITBALANCEBAD DEBT
21Abdo2,000.001,000.001,000.00
32Abbdo5,000.005,000.00
43Abdomen3,000.004,000.00-1,000.00
54Addob2,000.00200.001,800.00
6TOTAL12,000.005,200.006,800.00
RC



ABDO.xlsm
ABCDEF
1DATEINFODEBITCREDITBALANCEBAD DEBT
201/01/2025INV 1112,000.002,000.00
302/01/2025INV 1122,000.000.00
403/01/2025INV 1132,000.00-2,000.00
504/01/2025INV 1141,000.00-3,000.00
605/01/2025PAID5,000.002,000.00
706/01/2025RECEIVED500.001,500.00
8TOTAL7,000.005,500.001,500.00
AB



ABDO.xlsm
ABCDEF
1DATEINFODEBITCREDITBALANCEBAD DEBT
201/01/2025INV 1142,000.002,000.00
301/01/2025RECEIVED1,000.001,000.00
402/01/2025INV 1152,000.00-1,000.00
503/01/2025INV 1162,000.00-3,000.00
6TOTAL2,000.005,000.00-3,000.00
ADD



when select name from combobox1, checkbox1
1.PNG



then will search name in RC sheet in column B, show zero in BALANCE column E into cell for name and move amount to adjacent cell in column F like this
ABDO.xlsm
ABCDEF
1ITEMNAMEDEBITCREDITBALANCEBAD DEBT
21Abdo2,000.001,000.000.001,000.00
32Abbdo5,000.005,000.00
43Abdomen3,000.004,000.00-1,000.00
54Addob2,000.00200.001,800.00
6TOTAL12,000.005,200.006,800.00
RC


if unselected checkbox1 then return amount in column E and delete amount from column F like this
2.PNG

ABDO.xlsm
ABCDEF
1ITEMNAMEDEBITCREDITBALANCEBAD DEBT
21Abdo2,000.001,000.001,000.00
32Abbdo5,000.005,000.00
43Abdomen3,000.004,000.00-1,000.00
54Addob2,000.00200.001,800.00
6TOTAL12,000.005,200.006,800.00
RC



another example:
when select name from combobox1, checkbox1
3.PNG





then will search name based on sheet name , show zero in BALANCE column E into cell for name and move amount to adjacent cell in column F like this
ABDO.xlsm
ABCDEF
1DATEINFODEBITCREDITBALANCEBAD DEBT
201/01/2025INV 1142,000.002,000.00
301/01/2025RECEIVED1,000.001,000.00
402/01/2025INV 1152,000.00-1,000.00
503/01/2025INV 1162,000.00-3,000.00
6TOTAL2,000.005,000.000.00-3,000.00
ADD


if unselected checkbox1 then return amount in column E and delete amount from column F like this
4.PNG


ABDO.xlsm
ABCDEF
1DATEINFODEBITCREDITBALANCEBAD DEBT
201/01/2025INV 1142,000.002,000.00
301/01/2025RECEIVED1,000.001,000.00
402/01/2025INV 1152,000.00-1,000.00
503/01/2025INV 1162,000.00-3,000.00
6TOTAL2,000.005,000.00-3,000.00
ADD
 
Do the following:

1. Copy all the code and put it in your userform
VBA Code:
Option Explicit
Dim initial As Boolean

Private Sub CheckBox1_Click()
  If initial = True Then Exit Sub
 
  If ComboBox1.ListIndex = -1 Or ComboBox1.Value = "" Then Exit Sub
 
  If ComboBox1.List(ComboBox1.ListIndex, 1) = "sheet" Then
    Call update_sheet(ComboBox1.Value, "A:A", "TOTAL")
  Else
    Call update_sheet("RC", "B:B", ComboBox1.Value)
  End If
End Sub

Private Sub ComboBox1_Change()
  Dim f As Range
 
  With ComboBox1
    If .ListIndex = -1 Or .Value = "" Then Exit Sub
    initial = True
    If .List(.ListIndex, 1) = "sheet" Then
      CheckBox1.Value = SetCheckBox(.Value, "A:A", "TOTAL")
    Else
      CheckBox1.Value = SetCheckBox("RC", "B:B", .Value)
    End If
    initial = False
  End With
End Sub

Sub update_sheet(sheetName As String, col As String, txt As String)
  Dim f As Range
 
  With Sheets(sheetName)
    Set f = .Range(col).Find(txt, , xlValues, xlWhole, , , False)
    If Not f Is Nothing Then
      If CheckBox1.Value = True Then
        .Range("F" & f.Row).Value = .Range("E" & f.Row).Value
        .Range("E" & f.Row).Value = 0
      Else
        .Range("E" & f.Row).Value = .Range("F" & f.Row).Value
        .Range("F" & f.Row).Value = ""
      End If
    End If
  End With
End Sub

Function SetCheckBox(sName As String, col As String, txt As String)
  Dim f As Range
    With Sheets(sName)
      Set f = .Range(col).Find(txt, , xlValues, xlWhole, , , False)
      If Not f Is Nothing Then
        If .Range("E" & f.Row).Value <> 0 And .Range("F" & f.Row).Value = "" Then
          SetCheckBox = False
        Else
          SetCheckBox = True
        End If
      End If
    End With
End Function

Private Sub UserForm_Initialize()
  Dim i As Long
  Dim sh As Worksheet, sh1 As Worksheet
 
  Set sh1 = Sheets("RC")
  With ComboBox1
    For i = 2 To sh1.Range("B" & Rows.Count).End(3).Row
      .AddItem sh1.Range("B" & i).Value
      .List(.ListCount - 1, 1) = "name"
    Next
 
    For Each sh In Sheets
      Select Case sh.Name
        Case sh1.Name, "Sheet1", "Summary", "etc"
       
        Case Else
          .AddItem sh.Name
          .List(.ListCount - 1, 1) = "sheet"
      End Select
    Next
  End With
End Sub

2. The code loads the combobox, so remove any code you use to load the combobox.

3. The code will add all the sheets in the workbook to the combobox, except the ones you put on this line:

Case sh1.Name, "Sheet1", "Summary", "etc"

4. How it works.
Select the name; it can be a person's name or a sheet name. At this point, the code doesn't perform any updates; it will only update the checkbox value, activating or deactivating it depending on the sheet balance and what you selected in the combo box.​
Then, select or deselect the checkbox; the code will then update the sheet.​


😇
 
Upvote 0
Solution
the code is awesome !
2. The code loads the combobox, so remove any code you use to load the combobox.
I don't want load all of sheets in the workbook just specific sheets (RC,AB,ADD) , may you adjust it,please?
 
Upvote 0
Change this part in the code:

Rich (BB code):
Private Sub UserForm_Initialize()
  Dim i As Long
  Dim sh As Worksheet, sh1 As Worksheet
  
  Set sh1 = Sheets("RC")
  With ComboBox1
    For i = 2 To sh1.Range("B" & Rows.Count).End(3).Row
      .AddItem sh1.Range("B" & i).Value
      .List(.ListCount - 1, 1) = "name"
    Next
  
    For Each sh In Sheets
      Select Case sh.Name
        Case "AB", "ADD"
          .AddItem sh.Name
          .List(.ListCount - 1, 1) = "sheet"
      End Select
    Next
  End With
End Sub

😇
 
Upvote 0

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