Consulting

Results 1 to 3 of 3

Thread: Helper column

  1. #1
    Moderator VBAX Master austenr's Avatar
    Joined
    Sep 2004
    Location
    Maine
    Posts
    2,033
    Location

    Helper column

    Can someone explain how to use one and when to use one? Also a working example would be great. Thanks.
    Peace of mind is found in some of the strangest places.

  2. #2
    VBAX Sage
    Joined
    Apr 2007
    Location
    United States
    Posts
    8,728
    Location
    Simple example --

    Col A contains list of 10 character items and you need to sort them by characters 5-8

    Col B could be the helper col with a formula =Mid(A2,5,4)

    Sorting Col B will also sort the associated Col A items

    Paul
    Attached Files Attached Files

  3. #3
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Helper cell should always be used in two situations in my view

    - to avoud overly-complex formulae by breaking them down into simpler, intermediate formulae, so as to ease maintainability and auditability

    - to improve performance by reducing the number of cells recalculated in the calculation chain
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •