WildBurrow
New Member
- Joined
- Apr 5, 2021
- Messages
- 41
- Office Version
- 365
- Platform
- Windows
I have a sheet with three groupings of data; REMOVED, RETURNED, & SUSPENDED. I'd like the User to be able to remove data from the 'RETURNED' group. If they do, columns F:H would become empty/blank.
I'd need to figure out how to find this blank section and move the next row of data up - without impacting the adjacent columns AND without bringing up the last visible row (27) which is a colored-filled border for the sheet.
I've tried several iterations of the following, such as:
or
but doing so pulled row 27 upward (which are color-filled cells which function as a border to the sheet) and removed the cell borders.
Falling short of using an iteration of the above then replacing cell borders and refilling color to row 27, is there a more concise method to use?
Finally, my apologies for attaching an image. I work for an organization that will not allow me to download XL2BB nor allow me access to Box.com or DropBox.com .
Thanks
I'd need to figure out how to find this blank section and move the next row of data up - without impacting the adjacent columns AND without bringing up the last visible row (27) which is a colored-filled border for the sheet.
I've tried several iterations of the following, such as:
VBA Code:
Range("F:F").SpecialCells(xlBlanks).Delete xlUp
VBA Code:
Range("F4:F26").SpecialCells(xlBlanks).Delete xlUp
Falling short of using an iteration of the above then replacing cell borders and refilling color to row 27, is there a more concise method to use?
Finally, my apologies for attaching an image. I work for an organization that will not allow me to download XL2BB nor allow me access to Box.com or DropBox.com .
Thanks