+ Reply to Thread
Results 1 to 11 of 11

Protect formulas but allow adding and hiding rows

Hybrid View

estimating newb Protect formulas but allow... 05-24-2021, 11:49 AM
6StringJazzer Re: Protect formulas but... 05-24-2021, 12:30 PM
estimating newb Re: Protect formulas but... 05-24-2021, 12:36 PM
estimating newb Re: Protect formulas but... 05-24-2021, 01:48 PM
kvsrinivasamurthy Re: Protect formulas but... 05-25-2021, 03:20 AM
estimating newb Re: Protect formulas but... 05-25-2021, 08:08 AM
6StringJazzer Re: Protect formulas but... 05-25-2021, 11:05 AM
kvsrinivasamurthy Re: Protect formulas but... 05-25-2021, 08:44 AM
estimating newb Re: Protect formulas but... 05-25-2021, 12:00 PM
6StringJazzer Re: Protect formulas but... 05-25-2021, 12:08 PM
estimating newb Re: Protect formulas but... 05-26-2021, 01:16 PM
  1. #1
    Registered User
    Join Date
    05-24-2021
    Location
    South Carolina
    MS-Off Ver
    18
    Posts
    6

    Protect formulas but allow adding and hiding rows

    new to VBA and not sure how to make this work.
    I have a spreadsheet and want to protect it bc it has formulas in some columns that I don't want to get accidentally deleted. But I need to be able to add or hide rows, while copying the formulas from rows above.
    I tried to create a macro for this but it just adds a row at whatever row I click on when making the macro.

    any help would be super appreciated.

    Thanks,
    New to this

    Moderator's note: Please take the time to review our rules. There aren't many, and they are all important. Rule #1 requires good titles. "dumb newb question/help" is not a good title. I have updated it for you this time because you are a new member. --6StringJazzer
    Last edited by 6StringJazzer; 05-24-2021 at 12:24 PM.

  2. #2
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS 365 Family 64-bit 2502
    Posts
    26,835

    Re: Protect formulas but allow adding and hiding rows

    Welcome to the Forum estimating newb!

    1. CTRL+a to select all cells
    2. Format, unselect Lock cell, to unlock all cells
    3. Select the cells with formulas that you want to protect
    4. Format, select Lock cell, to lock selected cells
    5. Select Review, then on the Protect panel select Protect Sheet
    6. Check Select locked cells, Select unlocked cells, Format Rows, Insert Rows.


    Now your formulas cannot be changed but you can copy the formulas to other cells, and insert and hide rows.

    I'm not sure why you are expecting to use VBA for this. If this solution does not work then please attach a file with sample data (see yellow banner at the top of the page)
    Jeff
    | | |·| |·| |·| |·| | |:| | |·| |·|
    Read the rules
    Use code tags to [code]enclose your code![/code]

  3. #3
    Registered User
    Join Date
    05-24-2021
    Location
    South Carolina
    MS-Off Ver
    18
    Posts
    6

    Re: Protect formulas but allow adding and hiding rows

    I've tried this and when I insert a row, the formulas are not copied into the new row. That's why I thought I needed code for this
    Last edited by 6StringJazzer; 05-25-2021 at 11:06 AM. Reason: Removed unnecessary quote

  4. #4
    Registered User
    Join Date
    05-24-2021
    Location
    South Carolina
    MS-Off Ver
    18
    Posts
    6

    Re: Protect formulas but allow adding and hiding rows

    I have included a sample of the workbook. it's actually hopefully going to be a template, but we shall see. anyways, when I try to follow the instructions you provided, the formulas in the various columns do not automatically copy. Part of the purpose of this template is for the formulas to come thru automatically.
    Attached Files Attached Files

  5. #5
    Forum Expert
    Join Date
    07-20-2011
    Location
    Mysore, India.
    MS-Off Ver
    Excel 2019
    Posts
    8,710

    Re: Protect formulas but allow adding and hiding rows

    worksheet Event Code

    Private Sub Worksheet_Change(ByVal Target As Range)
    Application.EnableEvents = False
    
    Dim LR As Long, Ro As Long, TRos As Long
    Dim Cel As Range
    LR = Range("A" & Rows.Count).End(xlUp).Row
    If Not Intersect(Range(Target.Address), Range("$1:$" & LR)) Is Nothing Then
    Ro = Target.Row
    TRos = Target.Rows.Count
    For Each Cel In Range("C" & Ro - 1 & ":M" & Ro - 1)
    If Cel.HasFormula Then Cel.Copy Range(Cel.Offset(1, 0), Cel.Offset(TRos, 0))
    Next Cel
    End If
    
    Application.EnableEvents = True
    End Sub
    Worksheetevent

    To paste the code
    Right click on Sheet tab --> view code
    Visual Basic (VB) window opens.
    Paste the code
    Close the VB window.
    Attached Files Attached Files
    Pl note
    Array formula should be confirmed with Ctrl+Shift+Enter keys together.
    If answere is satisfactory press * to add reputation.

  6. #6
    Registered User
    Join Date
    05-24-2021
    Location
    South Carolina
    MS-Off Ver
    18
    Posts
    6

    Re: Protect formulas but allow adding and hiding rows

    ok. what am i doing wrong? I can see where you have added a few rows in testing and looks like the formulas copied.
    how are you inserting the rows? I tried highlighting the whole row and also the insert row on the ribbon and both of them are not copying in the formulas.
    Last edited by 6StringJazzer; 05-25-2021 at 11:06 AM. Reason: Removed unnecessary quote

  7. #7
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS 365 Family 64-bit 2502
    Posts
    26,835

    Re: Protect formulas but allow adding and hiding rows

    Quote Originally Posted by estimating newb View Post
    ok. what am i doing wrong?
    You do not need to Reply With Quote every time you reply to a post. Just Reply unless there is something specific you really need to quote.

  8. #8
    Forum Expert
    Join Date
    07-20-2011
    Location
    Mysore, India.
    MS-Off Ver
    Excel 2019
    Posts
    8,710

    Re: Protect formulas but allow adding and hiding rows

    Pl up load file in which you have problem.
    If code is copied correctly.
    Select rows say 5 to 7. Right click. --> Insert.
    Code insert rows and copies all formulas.
    Note: you have merged column A and B. Merging should be avoided to the maximum extent possible. Here there is no necessity of merging. Pl avoid merging.
    Merging creates lot of problem to run a code or applying formulas.

  9. #9
    Registered User
    Join Date
    05-24-2021
    Location
    South Carolina
    MS-Off Ver
    18
    Posts
    6

    Re: Protect formulas but allow adding and hiding rows

    Ok. Well, I'll just leave then as it seems I am not responding or asking the questions you want the way you want. So sorry to have wasted your time.

  10. #10
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS 365 Family 64-bit 2502
    Posts
    26,835

    Re: Protect formulas but allow adding and hiding rows

    Quote Originally Posted by estimating newb View Post
    Ok. Well, I'll just leave then as it seems I am not responding or asking the questions you want the way you want. So sorry to have wasted your time.
    Not a waste of time at all, and it seems that kvsrinivasamurthy is on track to get you the solution you need. We just request that people spend a couple of minutes reading our rules when they come on board, which makes things run smoother for everyone.

  11. #11
    Registered User
    Join Date
    05-24-2021
    Location
    South Carolina
    MS-Off Ver
    18
    Posts
    6

    Re: Protect formulas but allow adding and hiding rows

    Oh yes, it seems he/she was on the right track. but with the attitude and critiques for simply asking questions being thrown at me, by a moderator of all people, I think I'll be better served looking elsewhere for help. now and in the future.

+ 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. Dumb question I know...
    By kuja in forum Excel General
    Replies: 4
    Last Post: 11-09-2010, 05:57 PM
  2. Dumb question
    By kirkm in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 07-06-2006, 06:50 AM
  3. dumb question
    By uw805 in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 06-08-2006, 12:10 PM
  4. Dumb VBA question
    By nobbyknownowt in forum Excel General
    Replies: 0
    Last Post: 04-23-2006, 08:35 AM
  5. Very dumb question
    By gregorsamsa in forum Excel General
    Replies: 2
    Last Post: 03-23-2006, 11:20 AM
  6. No Dumb Question
    By darkbearpooh1 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 01-25-2006, 11:35 AM
  7. Dumb question of the day.
    By DennisB in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 09-11-2005, 11:05 PM
  8. Dumb Question...
    By smoove in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-18-2005, 07:07 PM

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