Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Please Help!
I have a textbox where a user can type a date and a calculate button user can press to look at all sheets in workbook and if the date in th textbox matches a date in a cell on a worksheet then it copies tex from the sheet and pastes it in another location. My problem is, I cannot make my vba recognize that the date in th textbox matches the date in the cell (even when they do) Thanks in advance for your help! My code is below: Private Sub CalculateButton_Click() For i = 3 To Sheets.Count Sheets(i).Select If ActiveSheet.Range("b1") = DateUpdateTextBox.Value Then ActiveSheet.Range("b18:c18").Copy ActiveWorkbook.Sheets("Rollup").Activate ActiveWorkbook.Sheets("Rollup").Unprotect Range("f2").Select Do If IsEmpty(ActiveCell) = False Then ActiveCell.Offset(1, 0).Select End If Loop Until IsEmpty(ActiveCell) = True ActiveCell.PasteSpecial xlPasteValues Else End If Next End Su -- Message posted from http://www.ExcelForum.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Problem with control tag and populating speadsheet | Excel Discussion (Misc queries) | |||
problem with checkbox control | Excel Worksheet Functions | |||
Control sizing problem | Excel Programming | |||
Repost- problem with calender control | Excel Programming | |||
problem with calender control | Excel Programming |