• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Search results

  1. J

    Autosave to One Drive

    Hi, I have office 365 and when editing my workbook the autosave to one drive sometimes isn't working. Does anyone know why and how to fix please? Thank you
  2. J

    List Worksheets Code for Font and Size

    I found a way but it might be a longer method: I recorded Macro 1 and called it at the end of this code Sub Macro1() ' ' Macro1 Macro ' ' Columns("A:A").Select With Selection.Font .Name = "Bookman Old Style" .Strikethrough = False .Superscript = False...
  3. J

    List Worksheets Code for Font and Size

    Hello, Can the font and size of the worksheet names from this code be: bookman old style and size 16 bold Thank you Sub ListSheets() Dim ws As Worksheet Dim x As Integer x = 3 Sheets("Menu").Range("A3:A20").Clear For Each ws In Worksheets Sheets("Menu").Cells(x, 1).Select...
  4. J

    VBA Protect All Worksheets Keep Individual Sheet Protection Criteria

    Thank you so very much for taking the time to help me. Very valuable lessons learned today. Cheers!
  5. J

    VBA Protect All Worksheets Keep Individual Sheet Protection Criteria

    Thank you for your help sir.
  6. J

    VBA Protect All Worksheets Keep Individual Sheet Protection Criteria

    This was the code that does work after recording how Excel does the macro: Sub ProtectWorkbook() Dim wsheet As Worksheet For Each wsheet In ActiveWorkbook.Worksheets wsheet.Protect DrawingObjects:=False, Contents:=True, Scenarios:= _ True, AllowFiltering:=True...
  7. J

    VBA Protect All Worksheets Keep Individual Sheet Protection Criteria

    Wow I see how to record the macro. This is fantastic thank you so much.
  8. J

    VBA Protect All Worksheets Keep Individual Sheet Protection Criteria

    Well I was wrong. The protection isn't doing what I expected. I want to be able to only select Unlocked cells on all sheets and also on the Invoice Payment sheet allow the slicers to function. Can this be done please?
  9. J

    VBA Protect All Worksheets Keep Individual Sheet Protection Criteria

    I tried this and it worked: Sub ProtectWorkbook() Dim wsheet As Worksheet For Each wsheet In ActiveWorkbook.Worksheets wsheet.Protect DrawingObjects, AllowFiltering Next wsheet Range("F3").Select ActiveWorkbook.Save End Sub
  10. J

    VBA Protect All Worksheets Keep Individual Sheet Protection Criteria

    Thank you but I don't know how to do the syntax in the code for these.
  11. J

    VBA Protect All Worksheets Keep Individual Sheet Protection Criteria

    I have no idea what I am doing. I just try different ways to get the protection on the sheets that work the same as declaring in the ribbon. I need to allow select unlocked cells, allow autofilter, and allow drawing objects. These need to be in the VBA please. Thank you
  12. J

    VBA Protect All Worksheets Keep Individual Sheet Protection Criteria

    What is wrong with my codes? I get errors on the drawing objects and autofilters. >>> use code - tags <<< Sub ProtectWorkbook() Dim wsheet As Worksheet For Each wsheet In ActiveWorkbook.Worksheets wsheet.Protect , DrawingObjects:=False, AutoFilter:=False Next...
  13. J

    VBA Protect All Worksheets Keep Individual Sheet Protection Criteria

    Hello, I would like to protect all worksheets but some sheets have different criteria for protection. For instance some allow pivot table and pivot chart, sort, etc. Not all the same. Is there a macro that can handle this? Thank you very much
  14. J

    Shape Link to Sheet Item #

    Hello, On the worksheet 'Stock Manager'. Is there a way to assign each "Go To >>" yellow shapes go to worksheet based on the column C sheet names? For instance cell B5 "Go To >>" link would go to sheet 'Item #1' cell B6. Then cell B6 "Go To >>" link would go to sheet 'Item #2' cell B6...
  15. J

    Sort Table Number Order

    I figured out to add another column along side the Item # column and start number 001, 002, .....009, 010, 011 etc. This way I can sort this column and have the Item #1, Item #2 etc in order.
  16. J

    Sort Table Number Order

    Hello, I have a list of items in a table that I want sorted but the numbers are not in order. Item #1 Item #10 Should be Item #1 Item #2 Why is this happening? Is there a way to get the order correctly? Thank you
  17. J

    Exit Sub If Invoice Exists

    Actually I like the formula method to check if it exists. Thank you very much. You are very creative coming up with that solution Mr. Bridges.
  18. J

    Exit Sub If Invoice Exists

    The If statement is red color in the VBA.
  19. J

    Exit Sub If Invoice Exists

    Actually could it check the list from the Invoice Payments sheet to see if the invoice number exists?
  20. J

    Exit Sub If Invoice Exists

    Thanks but it still allows duplicates on the Invoice Payments sheet. It also saves as PDF. I was looking for a way to not have a duplicate invoice created and recorded. This way only one copy of each invoice will be saved as PDF and only one line item on the Invoice Payments sheet for each...
  21. J

    Exit Sub If Invoice Exists

    Hello, On the Invoice Template sheet there is a shape "Save" which runs code to save the invoice as PDF and posts the information on the "Invoice Payments" sheet. Is there a way to exit the code if the invoice already exists? Also popup message saying "Invoice has already been saved, nothing...
  22. J

    Update Inventory Levels From Invoice

    Sorry I see it now. I assigned your code to a shape and ran it. Perfect!
  23. J

    Update Inventory Levels From Invoice

    Thanks but don't see any results. I do see that the lines were removed. Is there a new code that I am not aware of?
  24. J

    Update Inventory Levels From Invoice

    Hi, On the 'Stock Out' sheet I request macro for columns B, D, F, and H from the 'Invoice Template' sheet. When the code runs it will add rows to the table like I manually entered as an example. Can this be done please? Thank you
  25. J

    Unlock VBA

    I suppose this project (that I paid for) is a curve that life throws at you. Fart on it.
Back
Top