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 Jul 13th, 2002, 04:39 AM   #1
eddy
 
Join Date: Mar 2002
Posts: 459
Default

Hi with thanks to TSTOM I have the following macro but I just need to get it to one more thing.
It produces a price list from data taken from the'MAIN' worksheet.
Col M either contains a 'Y' or an 'N' . If its 'N' then I dont want that line item to be printed.
All help appreciated.
eD


Option Explicit

Sub PDF_Export()
Dim HeaderText(), HeaderRow(), RowCntr As Long, NewElement As Integer, sp As Worksheet
RowCntr = 18
Windows("MasterQuoteSheet.xls").Activate
With Sheets("Main")
ReDim HeaderText(1 To 1): ReDim HeaderRow(1 To 1)
HeaderText(1) = .Cells(RowCntr, 12).Value
HeaderRow(1) = RowCntr
Do Until .Cells(RowCntr, 12) = ""
If .Cells(RowCntr, 12) <> HeaderText(UBound(HeaderText)) Then
NewElement = UBound(HeaderText) + 1
ReDim Preserve HeaderText(1 To NewElement)
ReDim Preserve HeaderRow(1 To NewElement)
HeaderText(NewElement) = .Cells(RowCntr, 12)
HeaderRow(NewElement) = RowCntr
End If
RowCntr = RowCntr + 1
Loop
NewElement = UBound(HeaderText) + 1
ReDim Preserve HeaderRow(1 To NewElement)
HeaderRow(NewElement) = RowCntr
Windows("MasterQuoteSheetUtils.xls").Activate
Set sp = Sheets("PriceList")
With sp.Range("C48:F5000")
.ClearContents
Application.ScreenUpdating = False
.Font.Bold = False
.Rows.RowHeight = 15.75
.Font.Name = "Arial"
.Font.Size = 9
End With
For NewElement = 1 To UBound(HeaderText)
For RowCntr = HeaderRow(NewElement) To HeaderRow(NewElement + 1) - 1

sp.Cells(RowCntr + 30, 3) = .Cells(RowCntr, 2)
sp.Cells(RowCntr + 30, 5) = .Cells(RowCntr, 3)
sp.Cells(RowCntr + 30, 6) = .Cells(RowCntr, 6)

Next
Next
RowCntr = 0
For NewElement = 1 To UBound(HeaderText)

RowCntr = RowCntr + 1
Rows(HeaderRow(NewElement) + 30).Insert Shift:=xlDown
sp.Cells(HeaderRow(NewElement) + 30, 5) = " " & HeaderText(NewElement)
sp.Cells(HeaderRow(NewElement) + 30, 5).Font.Bold = True
sp.Cells(HeaderRow(NewElement) + 30, 5).Font.Size = 12
HeaderRow(NewElement + 1) = HeaderRow(NewElement + 1) + RowCntr

Next
End With
Application.ScreenUpdating = True
Set sp = Nothing
End Sub


[ This Message was edited by: eddy on 2002-07-12 23:40 ]
eddy is offline   Reply With Quote
Old Jul 13th, 2002, 05:06 AM   #2
Tom Schreiner
 
Join Date: Mar 2002
Location: Cincinnati, Ohio, USA
Posts: 6,824
Default

I'm a slacker.

Replace your procedure with this one.
Sorry Ted.


Sub PDF_Export()
Dim HeaderText(), HeaderRow(), RowCntr As Long, NewElement As Integer, sp As Worksheet, c As Range
RowCntr = 18
Windows("MasterQuoteSheet.xls").Activate
With Sheets("Main")
ReDim HeaderText(1 To 1): ReDim HeaderRow(1 To 1)
HeaderText(1) = .Cells(RowCntr, 12).Value
HeaderRow(1) = RowCntr
Do Until .Cells(RowCntr, 12) = ""
If .Cells(RowCntr, 12) <> HeaderText(UBound(HeaderText)) Then
NewElement = UBound(HeaderText) + 1
ReDim Preserve HeaderText(1 To NewElement)
ReDim Preserve HeaderRow(1 To NewElement)
HeaderText(NewElement) = .Cells(RowCntr, 12)
HeaderRow(NewElement) = RowCntr
End If
RowCntr = RowCntr + 1
Loop
NewElement = UBound(HeaderText) + 1
ReDim Preserve HeaderRow(1 To NewElement)
HeaderRow(NewElement) = RowCntr
Windows("MasterQuoteSheetUtils.xls").Activate
Set sp = Sheets("PriceList")
sp.Range("J48:J5000").ClearContents
With sp.Range("C48:F5000")
.ClearContents
Application.ScreenUpdating = False
.Font.Bold = False
.Rows.RowHeight = 15.75
.Font.Name = "Arial"
.Font.Size = 9
End With
For NewElement = 1 To UBound(HeaderText)
For RowCntr = HeaderRow(NewElement) To HeaderRow(NewElement + 1) - 1

sp.Cells(RowCntr + 30, 3) = .Cells(RowCntr, 2)
sp.Cells(RowCntr + 30, 5) = .Cells(RowCntr, 3)
sp.Cells(RowCntr + 30, 6) = .Cells(RowCntr, 6)
sp.Cells(RowCntr + 30, 10) = .Cells(RowCntr, 13)
Next
Next
RowCntr = 0
For NewElement = 1 To UBound(HeaderText)

RowCntr = RowCntr + 1
Rows(HeaderRow(NewElement) + 30).Insert Shift:=xlDown
sp.Cells(HeaderRow(NewElement) + 30, 5) = " " & HeaderText(NewElement)
sp.Cells(HeaderRow(NewElement) + 30, 5).Font.Bold = True
sp.Cells(HeaderRow(NewElement) + 30, 5).Font.Size = 12
HeaderRow(NewElement + 1) = HeaderRow(NewElement + 1) + RowCntr

Next
End With
For Each c In sp.Range("J48:J5000")
If c = "N" Then
Rows(c.Row).EntireRow.Hidden = True
Else
Rows(c.Row).EntireRow.Hidden = False
End If
Next
Application.ScreenUpdating = True
Set sp = Nothing
End Sub



Simply hides the rows which have N's
Excel will not print hidden rows.
Cheers from the slacker across the pond!
Tom
Tom Schreiner is offline   Reply With Quote
Old Jul 14th, 2002, 04:51 AM   #3
eddy
 
Join Date: Mar 2002
Posts: 459
Default

No way!
Great solution as usual, many thanks Tom.
Ted
eddy 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 +1. The time now is 05:14 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
All contents Copyright 1998-2010 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