00:00listen if you have to sort this data set based on say title there's two ways to do it first
00:06is to
00:06use the filter function you select the two header like this and you press ctrl shift l and then this
00:12pull down menu will come up and now you can basically do outbreaker order and you can get
00:16the answers here and the other way to do it would be to use a function called sort by so
00:21we're going
00:21to equal to sort by and then the first argument on that sort by would be the entire data set
00:28itself
00:28like this and then the second argument would be the column that you want to sort with like this
00:34close parenthesis and hit enter but the intent of this tip is not to sort based on alphabetical order
00:41the intent is to sort based on custom order as specified here how would you do it let me undo
00:46everything first you start off with a match function match function searches for values from b5 to b39
00:53within the range of e5 to e39 and returns the relative position with the exact matching and
01:00store it into an array then we can encapsulate the match with the sort by function basically sorting
01:07data from b5 to c39 with the output from the match function and after that hit enter you can see
01:14that
01:15the sorted list is sorting based on the custom order list in column e
Comments