Adjusting Table Size As Needed

ALdair

New Member
Joined
Dec 5, 2017
Messages
6
I'm working on a project that needs a bit of flexibility in it.

I'm building a table that can potentially expand and contract greatly depending on what the user needs. I've figured out how to make columns expand and collapse laterally to meet my needs (getting it done without manually refreshing the page is a bear but not my issue right now). I am stumped at trying to figure out how to automatically update a row with the formatting of the row above it when you enter in a name to a cell.

Basically:

Formatted Row: Name Name PII PII Data Data Data Data
Empty Row: Empty Empty Empty Empty Empty Empty <- Need this row to copy formatting of the row above when I enter a name
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Try Inserting a row right below the last used row. The insert action typically copies the format from left or above by default (depends on what you're inserting; column or row).

Otherwise, you might be looking into a VBA solution.
Code:
    Selection.Offset(-1).Copy
    Range("A8").PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, _
        SkipBlanks:=False, Transpose:=False
 
Upvote 0

Forum statistics

Threads
1,223,958
Messages
6,175,642
Members
452,663
Latest member
MEMEH

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top