MrExcel Message Board

Go Back   MrExcel Message Board > Question Forums > Excel Questions

Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only.

Reply
 
Thread Tools Display Modes
Old Apr 24th, 2002, 11:39 AM   #1
Todd_M
Board Regular
 
Join Date: Feb 2002
Posts: 117
Default

Hi-

For Each s In Worksheets("sheet2").Range("a1:a100")
If s.Value = date_form.Calendar3.Value Then
x = s.Offset(0, 1).Value

If Sheets(x).Value = True Then
Sheets(x).Activate
Else
ActiveWorkbook.Sheets.Add().Name = x.Value
sheets(x).Activate
End If
End If
Next s


In this code x stands for the name of the sheet that the code has to find. If x is not true then I want the code to make up a sheet with the name from x.value. I also need the code to activate the sheet. How can I rewrite this so I dont keep getting an error? Thanks
Todd_M is offline   Reply With Quote
Old Apr 24th, 2002, 12:02 PM   #2
Jay Petrulis
MrExcel MVP
 
Jay Petrulis's Avatar
 
Join Date: Mar 2002
Location: Chicago, IL USA
Posts: 2,042
Default

Hi Todd,

I used the following routine to run through a list to determine if a sheet with that name exists. If it does exists, the sub does nothing. If it does not exist, the sub adds the sheet with the name in the referenced cell.

The sub makes a function call to the UDF "SheetExists"

'---------------
Public Function SheetExists(sheetname) As Boolean
Dim abc As Object
On Error Resume Next
Set abc = ActiveWorkbook.Sheets(sheetname)
If Err = 0 Then SheetExists = True _
Else SheetExists = False
End Function

Sub Add_Sheets()
Dim lastrow As Long, sheettoname As String, x As Long
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
lastrow = Sheets("Input Sheet").Cells(Rows.Count, 1).End(xlUp).Row

For x = 2 To lastrow
sheettoname = Sheets("Input Sheet").Cells(x, 1)
If SheetExists(sheettoname) = True Then
' do nothing
Else
Worksheets.Add After:=Sheets(ThisWorkbook.Worksheets.Count)
Activesheet.Name = Sheets("Input Sheet").Cells(x, 1).Value
Call Module1.SetupNewSheet
End If
Next x
Sheets("Input Sheet").Select
MsgBox "Done!"
Application.Calculation = xlCalculationAutomatic
Application.ScreenUpdating = True
End Sub
'-----------------

Bye,
Jay
Jay Petrulis is offline   Reply With Quote
Old Apr 24th, 2002, 12:46 PM   #3
Todd_M
Board Regular
 
Join Date: Feb 2002
Posts: 117
Default

Hi-
Thanks jay again for your help, Icant seem to figure out where your code would fit into my code that I already have:


Private Sub CommandButton1_Click()
TextBox6.Text = ""
If ComboBox2.Text = "" Then
MsgBox "You must enter a type of payment or 'EXIT'."
Exit Sub
End If
If TextBox4.Text = "" Then
MsgBox "You must enter an amount, or 'EXIT'."
Exit Sub
End If
If TextBox1.Text = "" Then
TextBox1.Text = "N/A"
End If
If TextBox2.Text = "" Then
TextBox2.Text = "N/A"
End If
If ComboBox1.Text = "" Then
ComboBox1.Text = "N/A"
End If
If TextBox3.Text = "" Then
TextBox3.Text = "N/A"
End If
If TextBox5.Text = "" Then
TextBox5.Text = "N/A"
End If

Sheets("sheet2").Select
Worksheets("sheet2").Range("d1").End(xlDown).Offset(0, 0).Select
post.TextBox6.Text = Selection.Value


For Each s In Worksheets("sheet2").Range("a1:a100")
If s.Value = date_form.Calendar3.Value Then
x = s.Offset(0, 1).Value

If Sheets(x).Value = True Then
Sheets(x).Activate

Else
ActiveWorkbook.Sheets.Add().Name = x.Value

Sheets(x).Activate

End If
End If
Next s
nextrow = Application.WorksheetFunction.CountA(Range("a:a")) + 1
Cells(nextrow, 1) = date_form.Calendar3.Value
Cells(nextrow, 2) = TextBox1.Text
Cells(nextrow, 3) = TextBox2.Text
Cells(nextrow, 4) = ComboBox2.Text
Cells(nextrow, 5) = ComboBox1.Text
Cells(nextrow, 6) = TextBox3.Text
Cells(nextrow, 7) = TextBox4.Text
Cells(nextrow, = TextBox5.Text
Cells(nextrow, 9) = TextBox6.Text

Sheets("sheet2").Select
ActiveCell.ClearContents

TextBox1.Text = ""
TextBox2.Text = ""
ComboBox2.Text = ""
ComboBox1.Text = ""
TextBox3.Text = ""
TextBox4.Text = ""
TextBox5.Text = ""
End Sub


As you can see I have no idea how to apply it to this code-??
Thanks again Todd
Todd_M is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 07:26 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
All contents Copyright 1998-2012 by MrExcel Consulting.
diabetic desserts recipes recipes Diabetic Soups Holiday Pizza Recipes Popcorn Recipes Recipes For Microwave Pasta Recipes Casserole Recipes Chili Recipes Curry Recipes Crockpot Recipes Apples Recipes Bread Recipes Vegetarian Recipes Vegetable recipes Desserts Recipes Appetizers Ethnic Recipes Meat Dishes Barbecue Recipes Sauces Recipes Marinade Recipes Low Fat Recipes Frugal Gourmet Kitchen Classics Recipes On The Grill Cook Books Seafood Recipes Cajun Recipes Breads Low Fat Low Fat Breads Bread Machine Recipes Yeast Breads Quick Breads Fat Free Vegetarian Salad Recipes Eggplant Recipes Radish Recipes Tomato Recipes Jalapeno Recipes Potato Recipes Lettuce Recipes Cabbage Recipes Beans Ambrosia Recipes Biscotti Recipes Desserts Low Fat Cookie Recipes Cheesecake Recipes Cake Recipes Pie Recipes Muffin Recipes Custard Recipes Best Appetizers Appetizers Low Fat Salsa Recipes Dip Recipes International Recipes Afghan Recipes Alaska Recipes French Recipes German Recipes Greek Recipes Italian Recipes Spanish Recipes Thai Recipes Korean Recipes Chinese Recipes Mexican Recipes Indian Recipes Beef Recipes Pork Pork & Ham Pork Butts Pork Chop Recipes Pork Ribs Rulled Pork Poultry Recipes Stews Recipes Ground Beef Barbecue Grill Barbecue Smoker All Purpose Sauce BBQ Sauce Barbecue Sauce Carolina BBQ Sauce Pickle Recipes Marinades Smoking Low Fat Appetizers & Dips Low Fat Breakfast Low Fat Cakes Low Fat Cheesecakes Low Fat Cookies Low Fat Desserts Low Fat Fish & Seafood Low Fat Meats Low Fat Pasta Low Fat Pies Low Fat Salads Low Fat Sandwiches Low Fat Sauces & Condiments Low Fat Sides Low Fat Soups Low Fat Vegetarian Baker's Dozen Taste of Home Recipe Book Bon Appetit Cookbook Blacktie Cookbook Buster Cook Book Cookbook USA Cook Book Cook Book Sara's Cookbook Sara's Cookbook Appetizers and Dips Poultry recipes Diabetic recipes Holiday recipes Miscellaneous recipes 110 recipes 1986 Usenet cookbook 2900 recipes Cyberrealm recipes Great sysops of world Specialty recipes Ceideburg recipes Cheese recipes Chili recipes Fruits recipes Garlic recipes Great chefs of NY Londontowne recipes Raisins recipes Recipes for kids US Food Vegetarian recipes Bread recipes Drinks Meat Dishes Brisket recipes Caribou recipes Chicken recipes Filet mignons recipes Pork recipes Swordfish recipes Turkey recipes Pasta recipes Uncategorized recipes Ethnic recipes Canada recipes English recipes Ethiopia recipes Germany recipes Greece recipes Mexican recipes Philippines recipes Welsh recipes Microwave recipes Soups recipes Vegetable recipes Asparagus recipes Barley recipes Brown rice recipes Lentil recipes Mushrooms recipes Salads recipes Wild rice Desserts recipes Cakes recipes Chocolate recipes Cookies recipes Ice cream recipes