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

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -