Grouping and ungrouping a specified range with excel VBA -


i have range of cells (a60 y70) . group , ungroup columns of these cells way broad , complexed view. possible ungroup , group specified range use of vba. there many more ranges of such function useful me! thank you:)

you can use group function:

range("a60", "y70").group 

or ungroup them:

range("a60", "y70").ungroup 

Comments

Popular posts from this blog

swift - Button on Table View Cell connected to local function -

dns - Dokku server hosts two sites with TLD's, both domains are landing on only one app -

c# - ajax - How to receive data both html and json from server? -