• 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.

Recent content by JenniferS

  1. J

    Workout Instructions

    Thank you that worked!
  2. J

    Workout Instructions

    Where can this be inserted? Maybe show me thanks.
  3. J

    Workout Instructions

    life threw me a curve
  4. J

    Workout Instructions

    fart on it then
  5. J

    Workout Instructions

    Hello, Can there be a message popup if the file path isn't entered correctly? Then exit sub so the user can correct the file path. "Please correct the file path" Thank you for your help Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Not Intersect(Target...
  6. 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
  7. 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...
  8. 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...
  9. 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!
  10. J

    VBA Protect All Worksheets Keep Individual Sheet Protection Criteria

    Thank you for your help sir.
  11. 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...
  12. 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.
  13. 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?
  14. 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
  15. 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.
Back
Top