Need Help Find Date in Range("B:B") update data in cells C and D adjacent to found Date

Pulseless9

New Member
Joined
Jan 13, 2020
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Good evening, I have created a UserForm in a Multisheet workbook that has many functions for tracking supplies and actions throughout a regional care area. I have been able to make solid headway in teaching myself from the forums here, but I am stuck on the search for Date in a column range and updating the existing data in the row that contains the date. I have pasted my code below.
My goal is:
CommandButton12 --> find date from textbox36 in sr.range("B:B") --> update cells "C" and "D" adjacent to found date in "B".

What happens is:
The entire column "B:B" is found and the entire Column "C" and "D" are updated with data causing an overwrite of data on dates unrelated to the date searched on.

VBA Code:
Private Sub CommandButton12_Click()

Dim sr As Worksheet
Set sr = ThisWorkbook.Sheets("Regional Summary")
Dim r As Long
Dim LrR As Long
LrR = sr.Range("A" & Rows.Count).End(xlUp).Row 'Regional Summary
r = Application.Match((CLng(CDate(Me.TextBox36.Value))), sr.Range("B:B"), 0) 'Regional Summary

For r = 2 To LrR
If WorksheetFunction.CountIf(sr.Range("B:B"), (CLng(CDate(Me.TextBox36.Value)))) > 0 Then
    sr.Range("D" & r).Value = Val(Me.TextBox35.Value) + Val(Me.TextBox62.Value) 'combination of all supplies sent to all sites on date in textbox36
    sr.Range("C" & r).Value = Val(Me.TextBox61.Value) + Val(Worksheets("Regional Summary").Cells(r, 3).Text) 'combination of all supplies received; will likely have to pull data to hidden TB and add tb61 to it
End If
Next r

Dim txt
For Each txt In Frame2.Controls 'apply to textboxes in frame 2
    If TypeOf txt Is MSForms.TextBox Or TypeOf txt Is MSForms.ComboBox Then
    txt.Text = ""
    txt.BackColor = vbWhite
    End If
Next txt

MsgBox "Supply Receipt Recorded", vbInformation

End Sub
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.

Forum statistics

Threads
1,214,889
Messages
6,122,097
Members
449,065
Latest member
albertocarrillom

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