Set databodyrange of filtered table to include ALL cells

mikeincairns2

New Member
Joined
Dec 15, 2016
Messages
11
I need to format ALL the cells in a filtered table (even the hidden ones).

I have tried

Code:
Sub test()
Dim myRange As Range

Set myRange = Sheets(1).ListObjects(1).DataBodyRange
myRange.WrapText = True

End Sub

Can anyone please help?
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
G'day Mike,

What's the weather like in Cairns today?

You may only need the following to do the task for you:-

Code:
Sub test()

Sheet1.ListObjects("Table1").DataBodyRange.WrapText = True  '---->Assumes that the table name is "Table1". Change to suit.

End Sub

I hope that this helps,

Cheerio,
vcoolio.
 
Last edited:
Upvote 0
I need to format ALL the cells in a filtered table (even the hidden ones).

Can I ask why you want to do it on a filtered table but include then hidden cells for the wrap text? Why not just unfilter the table, or at least have the code do it, then re-apply the filter.
 
Upvote 0
Sorry vcoolio, doesn't work on a filtered list. I need to format ALL the cells in the databodyrange (those hidden and those not hidden)
BTW Beautiful wether in Cairns :)

G'day Mike,

What's the weather like in Cairns today?

You may only need the following to do the task for you:-

Code:
Sub test()

Sheet1.ListObjects("Table1").DataBodyRange.WrapText = True  '---->Assumes that the table name is "Table1". Change to suit.

End Sub

I hope that this helps,

Cheerio,
vcoolio.
 
Upvote 0
Yes I realise that I can "un-filter" and then "re-filter". But I just thought there would be an easy way to set range of all cells.

Scenario: We have a table where some cells have a lot of text. We have a macro button to display the table in Condensed (no text-wrap) or Detailed (with text wrap). Users often filter the table to their needs. Want the button to work regardless of filtered or not filtered.

It is a pain to set variables to how the user has filtered, then in-filter, do something, and then re-apply the user's filters. That seems very inefficient.
 
Upvote 0
I need to format ALL the cells in a filtered table (even the hidden ones).

I have tried

Code:
Sub test()
Dim myRange As Range

Set myRange = Sheets(1).ListObjects(1).DataBodyRange
myRange.WrapText = True

End Sub

Can anyone please help?

Does this toggle (run it to wrap/run again to unwrap) code do what you want...
Code:
Sub WrapTextToggle()
  Dim Addr As String
  Addr = Sheets(1).ListObjects(1).DataBodyRange.Address
  Range(Addr).WrapText = Not Range(Addr).WrapText
End Sub
 
Upvote 0
Thanks Rick
That's a really clever solution, that should work...but...unfortunately does not.
I cant understand why though. The Addr variable does, in fact, return the correct range (ie the visible and hidden cells), but for some reason the formatting still only happens on the visible cells in the table.
 
Upvote 0
Thanks Rick
That's a really clever solution, that should work...but...unfortunately does not.
I cant understand why though. The Addr variable does, in fact, return the correct range (ie the visible and hidden cells), but for some reason the formatting still only happens on the visible cells in the table.
When I tested it on my XL2010 workbook, it appeared to work fine for me... first I used the drop down arrow on the header to hide some unwrapped cells, then I ran the macro and then when I used the drop down arrow on the header cell and set the filter to show all the rows, both the visible and previously hidden cells had wrapped text.
 
Last edited:
Upvote 0
Not for me. Excel 2016 using Data Tables (specifically) not a list/range.
I also tried other formatting and it did not work on the hidden cells.
 
Upvote 0

Forum statistics

Threads
1,216,371
Messages
6,130,217
Members
449,567
Latest member
ashsweety

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