Forum Discussion

jmpjmp's avatar
jmpjmp
Copper Contributor
Mar 14, 2023
Solved

VBA Run-time error '1004' when Hide/Show Rows

Hello All,   I am confronted with an error message - "Run-time error '1004': Unable to set the Hidden property of the Range class" when hiding/showing entire rows.   Cells A1:A10 are given values...
  • jmpjmp 

     

    This is because the ListFillRange is set to A1:A10 and you are trying to hide those rows. An easy fix is to use On Error Resumen Next like below...

     

    On Error Resume Next
    Rows(ShowRows).Hidden = False
    Rows(HideRows).Hidden = True
    On Error GoTo 0

     

Resources