Is there a way to sort only the selected columns in an Excel Pivot Table? -
i want have first 3 columns locked due nature of values, when sort horizontally, columns don't want sorted end in middle of chart. there way around this? thanks.
in vba function proabbly then:
sub sortltable() range("d2:g10").sort key1:=range("d1:g1"), order1:=xlascending, orientation:=xllefttoright end sub
where range want sort , key determines values sorted
Comments
Post a Comment