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

java - OnDragListener Fires Several Times? -

spring - "Dispatcher has no subscribers" during startup -

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