Hide Rows Automatically via Cell Result Change











up vote
1
down vote

favorite












Sub hide()
Dim wb As Workbook
Dim ws As Worksheet
Dim c As Range
Dim targetRange As Range

Set wb = ThisWorkbook
Set ws = wb.Sheets("Ballast Quote")
Set targetRange = ws.Range("A20:A30")

targetRange.EntireRow.Hidden = False

For Each c In targetRange.Rows
If (WorksheetFunction.CountIf(c, "<>0") - WorksheetFunction.CountIf(c, "") = 0) And (WorksheetFunction.CountA(c) - WorksheetFunction.Count(c) = 0) Then
c.EntireRow.Hidden = True
End If
Next c

End Sub


This macro works perfectly but i would rather not have to go in and hit "F5" every time a range of cell changes. My issue is that the cells that trigger the macro are not changed manually but are a result of another sheet, example cell A20 shows "=Inventory!$L$41". I have not found any answers on this on options to have a button or if cell is changed manually. Any takers???










share|improve this question




























    up vote
    1
    down vote

    favorite












    Sub hide()
    Dim wb As Workbook
    Dim ws As Worksheet
    Dim c As Range
    Dim targetRange As Range

    Set wb = ThisWorkbook
    Set ws = wb.Sheets("Ballast Quote")
    Set targetRange = ws.Range("A20:A30")

    targetRange.EntireRow.Hidden = False

    For Each c In targetRange.Rows
    If (WorksheetFunction.CountIf(c, "<>0") - WorksheetFunction.CountIf(c, "") = 0) And (WorksheetFunction.CountA(c) - WorksheetFunction.Count(c) = 0) Then
    c.EntireRow.Hidden = True
    End If
    Next c

    End Sub


    This macro works perfectly but i would rather not have to go in and hit "F5" every time a range of cell changes. My issue is that the cells that trigger the macro are not changed manually but are a result of another sheet, example cell A20 shows "=Inventory!$L$41". I have not found any answers on this on options to have a button or if cell is changed manually. Any takers???










    share|improve this question


























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      Sub hide()
      Dim wb As Workbook
      Dim ws As Worksheet
      Dim c As Range
      Dim targetRange As Range

      Set wb = ThisWorkbook
      Set ws = wb.Sheets("Ballast Quote")
      Set targetRange = ws.Range("A20:A30")

      targetRange.EntireRow.Hidden = False

      For Each c In targetRange.Rows
      If (WorksheetFunction.CountIf(c, "<>0") - WorksheetFunction.CountIf(c, "") = 0) And (WorksheetFunction.CountA(c) - WorksheetFunction.Count(c) = 0) Then
      c.EntireRow.Hidden = True
      End If
      Next c

      End Sub


      This macro works perfectly but i would rather not have to go in and hit "F5" every time a range of cell changes. My issue is that the cells that trigger the macro are not changed manually but are a result of another sheet, example cell A20 shows "=Inventory!$L$41". I have not found any answers on this on options to have a button or if cell is changed manually. Any takers???










      share|improve this question















      Sub hide()
      Dim wb As Workbook
      Dim ws As Worksheet
      Dim c As Range
      Dim targetRange As Range

      Set wb = ThisWorkbook
      Set ws = wb.Sheets("Ballast Quote")
      Set targetRange = ws.Range("A20:A30")

      targetRange.EntireRow.Hidden = False

      For Each c In targetRange.Rows
      If (WorksheetFunction.CountIf(c, "<>0") - WorksheetFunction.CountIf(c, "") = 0) And (WorksheetFunction.CountA(c) - WorksheetFunction.Count(c) = 0) Then
      c.EntireRow.Hidden = True
      End If
      Next c

      End Sub


      This macro works perfectly but i would rather not have to go in and hit "F5" every time a range of cell changes. My issue is that the cells that trigger the macro are not changed manually but are a result of another sheet, example cell A20 shows "=Inventory!$L$41". I have not found any answers on this on options to have a button or if cell is changed manually. Any takers???







      excel vba excel-vba






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 19 at 14:24









      Pᴇʜ

      19.9k42650




      19.9k42650










      asked Nov 19 at 14:18









      Jake Lenis

      82




      82
























          2 Answers
          2






          active

          oldest

          votes

















          up vote
          0
          down vote



          accepted










          Use the Worksheet.Change Event on your inventory worksheet to test if the original data changed:



          'this must be in Inventory worksheet!
          Private Sub Worksheet_Change(ByVal Target as Range)
          If Not Intersect(Target, Me.Range("L41")) Is Nothing Then
          hide 'run your procedure to hide
          End If
          End Sub


          This tests if Inventory!$L$41 changed and if so it runs your hide procedure.






          share|improve this answer





















          • I have just inserted code for Inventory worksheet! and same issue occurs. Cell value changes but rows remain unchanged??? This has been my dilemma.
            – Jake Lenis
            Nov 19 at 14:38










          • either it is spelled wrong, or in the wrong module, workbook or worksheet file
            – DaanV
            Nov 19 at 14:40










          • This should definitely work if you change the value in L41 of the inventory sheet. Put a breakpoint in your code to see if it gets triggered. Then use F8 to go through it step by step.
            – Pᴇʜ
            Nov 19 at 14:42










          • Is it possible it does not work because L41 is also a formulated cell in the other sheet? cell shows as "=SUMIF(B7:B39,K11,C7:C39)"
            – Jake Lenis
            Nov 19 at 14:51










          • of course this cannot work with formulas. You must trigger it on the original value (not formula) change. So change Range("L41") to Range("B7:B39,K11,C7:C39") in the code I provided.
            – Pᴇʜ
            Nov 19 at 14:57


















          up vote
          0
          down vote













          I suggest looking into Events, these are usually Sub or function called whenever something happens to a sheet/workbook



          The particular event you want is: Worksheet.Change (https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.tools.excel.worksheet.change?view=vsto-2017)



          Or Worksheet.Calculate (https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.tools.excel.worksheet.calculate?view=vsto-2017)



          You can hook that sub to activate yours or enter your code in there. The documentation is in C# but uses the same Events, properties and methods






          share|improve this answer























          • This does not work on formulas (OP has formulas) only if the value of the cell changes by user edit or VBA edit.
            – Pᴇʜ
            Nov 19 at 14:27












          • well you can also do the event of the data sheet and activate the hiding or showing on the result sheet. or you can use Worksheet.Calculate
            – DaanV
            Nov 19 at 14:28












          • I have tried some a couple "worksheet.Change" and calculation scenarios but nothing has worked. I am pretty new to the VBA and have learnt a ton the last week or so. Unfortunately i cannot call the macro above my own. If you have an example i can paste in to "view code" that i can try that would be a good starting point. Thanks in advance.
            – Jake Lenis
            Nov 19 at 14:31










          • @JakeLenis if you put in a break does it then trigger?
            – DaanV
            Nov 19 at 14:34










          • i have inserted a break with no luck
            – Jake Lenis
            Nov 19 at 14:57











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53376577%2fhide-rows-automatically-via-cell-result-change%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote



          accepted










          Use the Worksheet.Change Event on your inventory worksheet to test if the original data changed:



          'this must be in Inventory worksheet!
          Private Sub Worksheet_Change(ByVal Target as Range)
          If Not Intersect(Target, Me.Range("L41")) Is Nothing Then
          hide 'run your procedure to hide
          End If
          End Sub


          This tests if Inventory!$L$41 changed and if so it runs your hide procedure.






          share|improve this answer





















          • I have just inserted code for Inventory worksheet! and same issue occurs. Cell value changes but rows remain unchanged??? This has been my dilemma.
            – Jake Lenis
            Nov 19 at 14:38










          • either it is spelled wrong, or in the wrong module, workbook or worksheet file
            – DaanV
            Nov 19 at 14:40










          • This should definitely work if you change the value in L41 of the inventory sheet. Put a breakpoint in your code to see if it gets triggered. Then use F8 to go through it step by step.
            – Pᴇʜ
            Nov 19 at 14:42










          • Is it possible it does not work because L41 is also a formulated cell in the other sheet? cell shows as "=SUMIF(B7:B39,K11,C7:C39)"
            – Jake Lenis
            Nov 19 at 14:51










          • of course this cannot work with formulas. You must trigger it on the original value (not formula) change. So change Range("L41") to Range("B7:B39,K11,C7:C39") in the code I provided.
            – Pᴇʜ
            Nov 19 at 14:57















          up vote
          0
          down vote



          accepted










          Use the Worksheet.Change Event on your inventory worksheet to test if the original data changed:



          'this must be in Inventory worksheet!
          Private Sub Worksheet_Change(ByVal Target as Range)
          If Not Intersect(Target, Me.Range("L41")) Is Nothing Then
          hide 'run your procedure to hide
          End If
          End Sub


          This tests if Inventory!$L$41 changed and if so it runs your hide procedure.






          share|improve this answer





















          • I have just inserted code for Inventory worksheet! and same issue occurs. Cell value changes but rows remain unchanged??? This has been my dilemma.
            – Jake Lenis
            Nov 19 at 14:38










          • either it is spelled wrong, or in the wrong module, workbook or worksheet file
            – DaanV
            Nov 19 at 14:40










          • This should definitely work if you change the value in L41 of the inventory sheet. Put a breakpoint in your code to see if it gets triggered. Then use F8 to go through it step by step.
            – Pᴇʜ
            Nov 19 at 14:42










          • Is it possible it does not work because L41 is also a formulated cell in the other sheet? cell shows as "=SUMIF(B7:B39,K11,C7:C39)"
            – Jake Lenis
            Nov 19 at 14:51










          • of course this cannot work with formulas. You must trigger it on the original value (not formula) change. So change Range("L41") to Range("B7:B39,K11,C7:C39") in the code I provided.
            – Pᴇʜ
            Nov 19 at 14:57













          up vote
          0
          down vote



          accepted







          up vote
          0
          down vote



          accepted






          Use the Worksheet.Change Event on your inventory worksheet to test if the original data changed:



          'this must be in Inventory worksheet!
          Private Sub Worksheet_Change(ByVal Target as Range)
          If Not Intersect(Target, Me.Range("L41")) Is Nothing Then
          hide 'run your procedure to hide
          End If
          End Sub


          This tests if Inventory!$L$41 changed and if so it runs your hide procedure.






          share|improve this answer












          Use the Worksheet.Change Event on your inventory worksheet to test if the original data changed:



          'this must be in Inventory worksheet!
          Private Sub Worksheet_Change(ByVal Target as Range)
          If Not Intersect(Target, Me.Range("L41")) Is Nothing Then
          hide 'run your procedure to hide
          End If
          End Sub


          This tests if Inventory!$L$41 changed and if so it runs your hide procedure.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 19 at 14:32









          Pᴇʜ

          19.9k42650




          19.9k42650












          • I have just inserted code for Inventory worksheet! and same issue occurs. Cell value changes but rows remain unchanged??? This has been my dilemma.
            – Jake Lenis
            Nov 19 at 14:38










          • either it is spelled wrong, or in the wrong module, workbook or worksheet file
            – DaanV
            Nov 19 at 14:40










          • This should definitely work if you change the value in L41 of the inventory sheet. Put a breakpoint in your code to see if it gets triggered. Then use F8 to go through it step by step.
            – Pᴇʜ
            Nov 19 at 14:42










          • Is it possible it does not work because L41 is also a formulated cell in the other sheet? cell shows as "=SUMIF(B7:B39,K11,C7:C39)"
            – Jake Lenis
            Nov 19 at 14:51










          • of course this cannot work with formulas. You must trigger it on the original value (not formula) change. So change Range("L41") to Range("B7:B39,K11,C7:C39") in the code I provided.
            – Pᴇʜ
            Nov 19 at 14:57


















          • I have just inserted code for Inventory worksheet! and same issue occurs. Cell value changes but rows remain unchanged??? This has been my dilemma.
            – Jake Lenis
            Nov 19 at 14:38










          • either it is spelled wrong, or in the wrong module, workbook or worksheet file
            – DaanV
            Nov 19 at 14:40










          • This should definitely work if you change the value in L41 of the inventory sheet. Put a breakpoint in your code to see if it gets triggered. Then use F8 to go through it step by step.
            – Pᴇʜ
            Nov 19 at 14:42










          • Is it possible it does not work because L41 is also a formulated cell in the other sheet? cell shows as "=SUMIF(B7:B39,K11,C7:C39)"
            – Jake Lenis
            Nov 19 at 14:51










          • of course this cannot work with formulas. You must trigger it on the original value (not formula) change. So change Range("L41") to Range("B7:B39,K11,C7:C39") in the code I provided.
            – Pᴇʜ
            Nov 19 at 14:57
















          I have just inserted code for Inventory worksheet! and same issue occurs. Cell value changes but rows remain unchanged??? This has been my dilemma.
          – Jake Lenis
          Nov 19 at 14:38




          I have just inserted code for Inventory worksheet! and same issue occurs. Cell value changes but rows remain unchanged??? This has been my dilemma.
          – Jake Lenis
          Nov 19 at 14:38












          either it is spelled wrong, or in the wrong module, workbook or worksheet file
          – DaanV
          Nov 19 at 14:40




          either it is spelled wrong, or in the wrong module, workbook or worksheet file
          – DaanV
          Nov 19 at 14:40












          This should definitely work if you change the value in L41 of the inventory sheet. Put a breakpoint in your code to see if it gets triggered. Then use F8 to go through it step by step.
          – Pᴇʜ
          Nov 19 at 14:42




          This should definitely work if you change the value in L41 of the inventory sheet. Put a breakpoint in your code to see if it gets triggered. Then use F8 to go through it step by step.
          – Pᴇʜ
          Nov 19 at 14:42












          Is it possible it does not work because L41 is also a formulated cell in the other sheet? cell shows as "=SUMIF(B7:B39,K11,C7:C39)"
          – Jake Lenis
          Nov 19 at 14:51




          Is it possible it does not work because L41 is also a formulated cell in the other sheet? cell shows as "=SUMIF(B7:B39,K11,C7:C39)"
          – Jake Lenis
          Nov 19 at 14:51












          of course this cannot work with formulas. You must trigger it on the original value (not formula) change. So change Range("L41") to Range("B7:B39,K11,C7:C39") in the code I provided.
          – Pᴇʜ
          Nov 19 at 14:57




          of course this cannot work with formulas. You must trigger it on the original value (not formula) change. So change Range("L41") to Range("B7:B39,K11,C7:C39") in the code I provided.
          – Pᴇʜ
          Nov 19 at 14:57












          up vote
          0
          down vote













          I suggest looking into Events, these are usually Sub or function called whenever something happens to a sheet/workbook



          The particular event you want is: Worksheet.Change (https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.tools.excel.worksheet.change?view=vsto-2017)



          Or Worksheet.Calculate (https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.tools.excel.worksheet.calculate?view=vsto-2017)



          You can hook that sub to activate yours or enter your code in there. The documentation is in C# but uses the same Events, properties and methods






          share|improve this answer























          • This does not work on formulas (OP has formulas) only if the value of the cell changes by user edit or VBA edit.
            – Pᴇʜ
            Nov 19 at 14:27












          • well you can also do the event of the data sheet and activate the hiding or showing on the result sheet. or you can use Worksheet.Calculate
            – DaanV
            Nov 19 at 14:28












          • I have tried some a couple "worksheet.Change" and calculation scenarios but nothing has worked. I am pretty new to the VBA and have learnt a ton the last week or so. Unfortunately i cannot call the macro above my own. If you have an example i can paste in to "view code" that i can try that would be a good starting point. Thanks in advance.
            – Jake Lenis
            Nov 19 at 14:31










          • @JakeLenis if you put in a break does it then trigger?
            – DaanV
            Nov 19 at 14:34










          • i have inserted a break with no luck
            – Jake Lenis
            Nov 19 at 14:57















          up vote
          0
          down vote













          I suggest looking into Events, these are usually Sub or function called whenever something happens to a sheet/workbook



          The particular event you want is: Worksheet.Change (https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.tools.excel.worksheet.change?view=vsto-2017)



          Or Worksheet.Calculate (https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.tools.excel.worksheet.calculate?view=vsto-2017)



          You can hook that sub to activate yours or enter your code in there. The documentation is in C# but uses the same Events, properties and methods






          share|improve this answer























          • This does not work on formulas (OP has formulas) only if the value of the cell changes by user edit or VBA edit.
            – Pᴇʜ
            Nov 19 at 14:27












          • well you can also do the event of the data sheet and activate the hiding or showing on the result sheet. or you can use Worksheet.Calculate
            – DaanV
            Nov 19 at 14:28












          • I have tried some a couple "worksheet.Change" and calculation scenarios but nothing has worked. I am pretty new to the VBA and have learnt a ton the last week or so. Unfortunately i cannot call the macro above my own. If you have an example i can paste in to "view code" that i can try that would be a good starting point. Thanks in advance.
            – Jake Lenis
            Nov 19 at 14:31










          • @JakeLenis if you put in a break does it then trigger?
            – DaanV
            Nov 19 at 14:34










          • i have inserted a break with no luck
            – Jake Lenis
            Nov 19 at 14:57













          up vote
          0
          down vote










          up vote
          0
          down vote









          I suggest looking into Events, these are usually Sub or function called whenever something happens to a sheet/workbook



          The particular event you want is: Worksheet.Change (https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.tools.excel.worksheet.change?view=vsto-2017)



          Or Worksheet.Calculate (https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.tools.excel.worksheet.calculate?view=vsto-2017)



          You can hook that sub to activate yours or enter your code in there. The documentation is in C# but uses the same Events, properties and methods






          share|improve this answer














          I suggest looking into Events, these are usually Sub or function called whenever something happens to a sheet/workbook



          The particular event you want is: Worksheet.Change (https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.tools.excel.worksheet.change?view=vsto-2017)



          Or Worksheet.Calculate (https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.tools.excel.worksheet.calculate?view=vsto-2017)



          You can hook that sub to activate yours or enter your code in there. The documentation is in C# but uses the same Events, properties and methods







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 19 at 14:27

























          answered Nov 19 at 14:26









          DaanV

          3476




          3476












          • This does not work on formulas (OP has formulas) only if the value of the cell changes by user edit or VBA edit.
            – Pᴇʜ
            Nov 19 at 14:27












          • well you can also do the event of the data sheet and activate the hiding or showing on the result sheet. or you can use Worksheet.Calculate
            – DaanV
            Nov 19 at 14:28












          • I have tried some a couple "worksheet.Change" and calculation scenarios but nothing has worked. I am pretty new to the VBA and have learnt a ton the last week or so. Unfortunately i cannot call the macro above my own. If you have an example i can paste in to "view code" that i can try that would be a good starting point. Thanks in advance.
            – Jake Lenis
            Nov 19 at 14:31










          • @JakeLenis if you put in a break does it then trigger?
            – DaanV
            Nov 19 at 14:34










          • i have inserted a break with no luck
            – Jake Lenis
            Nov 19 at 14:57


















          • This does not work on formulas (OP has formulas) only if the value of the cell changes by user edit or VBA edit.
            – Pᴇʜ
            Nov 19 at 14:27












          • well you can also do the event of the data sheet and activate the hiding or showing on the result sheet. or you can use Worksheet.Calculate
            – DaanV
            Nov 19 at 14:28












          • I have tried some a couple "worksheet.Change" and calculation scenarios but nothing has worked. I am pretty new to the VBA and have learnt a ton the last week or so. Unfortunately i cannot call the macro above my own. If you have an example i can paste in to "view code" that i can try that would be a good starting point. Thanks in advance.
            – Jake Lenis
            Nov 19 at 14:31










          • @JakeLenis if you put in a break does it then trigger?
            – DaanV
            Nov 19 at 14:34










          • i have inserted a break with no luck
            – Jake Lenis
            Nov 19 at 14:57
















          This does not work on formulas (OP has formulas) only if the value of the cell changes by user edit or VBA edit.
          – Pᴇʜ
          Nov 19 at 14:27






          This does not work on formulas (OP has formulas) only if the value of the cell changes by user edit or VBA edit.
          – Pᴇʜ
          Nov 19 at 14:27














          well you can also do the event of the data sheet and activate the hiding or showing on the result sheet. or you can use Worksheet.Calculate
          – DaanV
          Nov 19 at 14:28






          well you can also do the event of the data sheet and activate the hiding or showing on the result sheet. or you can use Worksheet.Calculate
          – DaanV
          Nov 19 at 14:28














          I have tried some a couple "worksheet.Change" and calculation scenarios but nothing has worked. I am pretty new to the VBA and have learnt a ton the last week or so. Unfortunately i cannot call the macro above my own. If you have an example i can paste in to "view code" that i can try that would be a good starting point. Thanks in advance.
          – Jake Lenis
          Nov 19 at 14:31




          I have tried some a couple "worksheet.Change" and calculation scenarios but nothing has worked. I am pretty new to the VBA and have learnt a ton the last week or so. Unfortunately i cannot call the macro above my own. If you have an example i can paste in to "view code" that i can try that would be a good starting point. Thanks in advance.
          – Jake Lenis
          Nov 19 at 14:31












          @JakeLenis if you put in a break does it then trigger?
          – DaanV
          Nov 19 at 14:34




          @JakeLenis if you put in a break does it then trigger?
          – DaanV
          Nov 19 at 14:34












          i have inserted a break with no luck
          – Jake Lenis
          Nov 19 at 14:57




          i have inserted a break with no luck
          – Jake Lenis
          Nov 19 at 14:57


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53376577%2fhide-rows-automatically-via-cell-result-change%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          If I really need a card on my start hand, how many mulligans make sense? [duplicate]

          Alcedinidae

          Can an atomic nucleus contain both particles and antiparticles? [duplicate]