+ Reply to Thread
Results 1 to 8 of 8

Macro to print Black and white

Hybrid View

lxx28 Macro to print Black and white 03-15-2016, 06:25 AM
Mandeep Baluja Re: Macro to print Black and... 03-15-2016, 07:13 AM
lxx28 Re: Macro to print Black and... 03-15-2016, 03:16 PM
Mandeep Baluja Re: Macro to print Black and... 03-16-2016, 01:09 AM
lxx28 Re: Macro to print Black and... 03-16-2016, 07:29 AM
Mandeep Baluja Re: Macro to print Black and... 03-16-2016, 07:33 AM
lxx28 Re: Macro to print Black and... 03-16-2016, 09:09 AM
lxx28 Re: Macro to print Black and... 03-17-2016, 08:32 AM
  1. #1
    Registered User
    Join Date
    10-18-2015
    Location
    Amsterdam
    MS-Off Ver
    2013
    Posts
    17

    Macro to print Black and white

    Hi i'm a newby with excel, and a nobody with macro's.

    I have a table with colors. If i print it black&white it does not print smooth.
    When I make the cells in color black with white text, it will print perfectly. To change all the cells it's going to take everytime a few hours.


    I want to use a macro, but i don't have any experience.

    When the background of a cell is default (nothing) the cell don't have to change.
    When the background color of a cell is not default it should make the cell color black, the font in that cell white and bold, and if there is a border line, it also should be colored black.

    I have seen some tutorials, but after fiddling for 3 days with still no result, i hope some of you can help me of push in the right direction.


    If cell is not colored, do nothing
    else
    change background color to black, font color to white, and make font bold.

    If there is no border, do nothing,
    else change border thickness to fine line, and border color to black.

  2. #2
    Forum Contributor
    Join Date
    06-02-2015
    Location
    delhi
    MS-Off Ver
    2010
    Posts
    104

    Re: Macro to print Black and white

    Try this

    Sub Macro1()
    
    For nrow = 1 To ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row
     Cells(nrow, 1).Select
     With Selection.Interior
        If .Pattern = xlNone And .TintAndShade = 0 And .PatternTintAndShade = 0 Then
            
        Else
                     With Selection.Interior
            .Pattern = xlSolid
            .PatternColorIndex = xlAutomatic
            .ThemeColor = xlThemeColorLight1
            .TintAndShade = 0
            .PatternTintAndShade = 0
        End With
        With Selection.Font
            .ThemeColor = xlThemeColorDark1
            .TintAndShade = 0
        End With
        Selection.Font.Bold = True
        End If
            
           
        
    
    If Not (Selection.Borders(xlEdgeLeft).LineStyle = xlNone And _
        Selection.Borders(xlEdgeTop).LineStyle = xlNone And _
        Selection.Borders(xlEdgeBottom).LineStyle = xlNone And _
        Selection.Borders(xlEdgeRight).LineStyle = xlNone And _
        Selection.Borders(xlInsideVertical).LineStyle = xlNone And _
        Selection.Borders(xlInsideHorizontal).LineStyle = xlNone) Then
        
       
        Selection.Borders(xlEdgeLeft).LineStyle = xlContinuous
        Selection.Borders(xlEdgeTop).LineStyle = xlContinuous
        Selection.Borders(xlEdgeBottom).LineStyle = xlContinuous
        Selection.Borders(xlEdgeRight).LineStyle = xlContinuous
        Selection.Borders(xlInsideVertical).LineStyle = xlContinuous
        Selection.Borders(xlInsideHorizontal).LineStyle = xlContinuous
    
    
     Selection.Borders(xlEdgeLeft).ColorIndex = 0
        Selection.Borders(xlEdgeTop).ColorIndex = 0
        Selection.Borders(xlEdgeBottom).ColorIndex = 0
        Selection.Borders(xlEdgeRight).ColorIndex = 0
        Selection.Borders(xlInsideVertical).ColorIndex = 0
        Selection.Borders(xlInsideHorizontal).ColorIndex = 0
    
    
    End If
    
    End With
    Next
    
    End Sub

  3. #3
    Registered User
    Join Date
    10-18-2015
    Location
    Amsterdam
    MS-Off Ver
    2013
    Posts
    17

    Re: Macro to print Black and white

    Wauw,

    Tnx for posting that great piece of code.

    It runs a bit

    It does only colum A instead of the whole sheet.

    Making it black with a white bold font works perfectly in colum A. The border stays blue and with a thick line, instead of black with a thin line, but thats not a real big deal.
    If you can let it change the whole worksheet, you're truly the best haha

  4. #4
    Forum Contributor
    Join Date
    06-02-2015
    Location
    delhi
    MS-Off Ver
    2010
    Posts
    104

    Re: Macro to print Black and white

    Sub Macro1()
    
    For Each Cell In ActiveSheet.UsedRange
    
    Cell.Select
     With Selection.Interior
        If .Pattern = xlNone And .TintAndShade = 0 And .PatternTintAndShade = 0 Then
            
        Else
                     With Selection.Interior
            .Pattern = xlSolid
            .PatternColorIndex = xlAutomatic
            .ThemeColor = xlThemeColorLight1
            .TintAndShade = 0
            .PatternTintAndShade = 0
        End With
        With Selection.Font
            .ThemeColor = xlThemeColorDark1
            .TintAndShade = 0
        End With
        Selection.Font.Bold = True
        End If
            
           
        
    
    If Not (Selection.Borders(xlEdgeLeft).LineStyle = xlNone And _
        Selection.Borders(xlEdgeTop).LineStyle = xlNone And _
        Selection.Borders(xlEdgeBottom).LineStyle = xlNone And _
        Selection.Borders(xlEdgeRight).LineStyle = xlNone And _
        Selection.Borders(xlInsideVertical).LineStyle = xlNone And _
        Selection.Borders(xlInsideHorizontal).LineStyle = xlNone) Then
        
       
        Selection.Borders(xlEdgeLeft).LineStyle = xlContinuous
        Selection.Borders(xlEdgeTop).LineStyle = xlContinuous
        Selection.Borders(xlEdgeBottom).LineStyle = xlContinuous
        Selection.Borders(xlEdgeRight).LineStyle = xlContinuous
        Selection.Borders(xlInsideVertical).LineStyle = xlContinuous
        Selection.Borders(xlInsideHorizontal).LineStyle = xlContinuous
    
    
     Selection.Borders(xlEdgeLeft).ColorIndex = 0
        Selection.Borders(xlEdgeTop).ColorIndex = 0
        Selection.Borders(xlEdgeBottom).ColorIndex = 0
        Selection.Borders(xlEdgeRight).ColorIndex = 0
        Selection.Borders(xlInsideVertical).ColorIndex = 0
        Selection.Borders(xlInsideHorizontal).ColorIndex = 0
    
    
    End If
    
    End With
    Next
    
    End Sub

  5. #5
    Registered User
    Join Date
    10-18-2015
    Location
    Amsterdam
    MS-Off Ver
    2013
    Posts
    17

    Re: Macro to print Black and white

    Almost hahaha,

    Only now colom A works perfect, but with the rest, all the cells will be colored black with white font. I'm looking at your code so may be I can understand it and change it myself, but with the first line of code i'm lost already ahahhaa.

    May be in the future i will understand it more.

  6. #6
    Forum Contributor
    Join Date
    06-02-2015
    Location
    delhi
    MS-Off Ver
    2010
    Posts
    104

    Re: Macro to print Black and white

    send me the attachment with some data :D

  7. #7
    Registered User
    Join Date
    10-18-2015
    Location
    Amsterdam
    MS-Off Ver
    2013
    Posts
    17

    Re: Macro to print Black and white

    I have some problems attaching the file here, so i uploaded it here
    HTML Code: 
    Thx for helping me. I really appreciate it.

  8. #8
    Registered User
    Join Date
    10-18-2015
    Location
    Amsterdam
    MS-Off Ver
    2013
    Posts
    17

    Re: Macro to print Black and white

    `Let me know if you can download that file, or that i should try something else.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Print Text in Color, Pictures Black & White
    By FallingDown in forum Word Formatting & General
    Replies: 4
    Last Post: 09-30-2013, 06:11 AM
  2. [SOLVED] VB to force Landscape & Black and White Printing
    By Nitefox in forum For Other Platforms(Mac, Google Docs, Mobile OS etc)
    Replies: 5
    Last Post: 09-21-2013, 06:59 PM
  3. Replies: 1
    Last Post: 08-06-2012, 04:56 PM
  4. Black & White Printing w/ conditional formatting
    By TRLambert in forum Excel General
    Replies: 1
    Last Post: 08-06-2009, 11:06 PM
  5. C#/.NET add-in; copy text as black and white
    By jeff3312000 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-22-2009, 03:07 AM
  6. [SOLVED] Color Excel Spreasheet print previews in black/white. Reason?
    By Jpope in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 01-16-2006, 05:08 PM
  7. convert a graph to black and white
    By Help with Thesis in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 05-26-2005, 05:15 PM
  8. [SOLVED] Convert diagram bars to black and white
    By Detfunkar in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 01-15-2005, 06:07 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1