Looked really hard for something similar to auto sort for one of my projects and at last, i stumbled upon your video. Really great tutorial, my query is solved now!
@zackwells64693 жыл бұрын
What do you do when you have more than 2 with the same criteria? This method appears to only work for a max of 2 at a time. For instance I want to sort by Date and I have >2 with the same date.
@wayneschell48102 жыл бұрын
Hey! This is great! Is there anyway you could show how to auto sort a table of data based on a date?
@UncleBubba2 жыл бұрын
Really handy video, thanks. Quick tip using the final VBA method: add another variable, _DataCol_ Like this: _Set DataCol = Range("MySheet[ColumnX]")_ _Set SortCol = Range("MySheet[ColumnY]")_ Then change _If Not Intersect(Target, SortCol) Is Nothing_ *to* _If Not Intersect(Target,_ *DatatCol*_) Is Nothing_ This allows you to sort by Column Y as data is entered into Column X Why? It allowed me to sort a sheet by date of data entry for certain fields. Just thought this might be useful for others.
@roronoazoro8343 Жыл бұрын
what if i wanna give a custom order, my own list according to which it ill get shorted
@LaniConcepcion6 ай бұрын
This is great! Tried this and it worked on my file. Thanks a lot.
@t19861002 жыл бұрын
Thank you for this video. One issue I couldn't have solved it when the table is provided with a function that generates on it constantly an update. The table doesn't sort automatically in that case.
@PNWDan Жыл бұрын
Love the webpage. Might be good to add an example of a two-column sort, which I needed.
@james4wd236 Жыл бұрын
I know nothing about Excel and this just blew my mind...
@IvanCortinas_ES3 жыл бұрын
Excellent tutorial. I think than in method 2 it is better to use the "
@cascadeanalog3208 ай бұрын
This is like like Flying to Italy to buy an Olive oil than simply walking to your nearest Local market and purchasing one.
@sagarvsoni3 жыл бұрын
How to sort rows of different colors in excel? Suppose I want to keep red rows at top, yellow rows at middle and white at last? Everytime I change the color of row, I have to manually sort it. Is there any way to sort it automatically? Thankyou
@mehran15913 жыл бұрын
Thanks. Great solutions. One question though. Would it possible to have the vba for sorting based on two columns for example first column B and then column a. Thanks.
@VVRATHH Жыл бұрын
Perfect tutorial, thank you so much
@parthomodi92412 жыл бұрын
Thank you for the information. Worked very well for my query.
@StuartLee-p7w Жыл бұрын
THis is brilliant thankyou. But when i am ranking by date i have multiple dates which are the same can i assign a unique rank number as i have multiple repeated.
@pomodoroforwork5547 Жыл бұрын
This is incredible! Thank you so much. I can't tell you how big a help this is :)
@mehdihaghi41772 жыл бұрын
Thank you so much for the information. My excel sheets are working perfectly! The only issue is when I have more than 2 with the same criteria, then the 3rd one would be blank. Do you have any solution for it?
@joshalbert85102 жыл бұрын
Randy Nolson Randy Nolson 6 months ago Use this formula instead to account for more than one duplicate value in the "RANK" column: =[@RANK] + (COUNTIF($C$2:[@RANK],[@RANK]) -1) *1
@pichouille29 Жыл бұрын
@@joshalbert8510 good tip!
@5alid-Alanazi3 жыл бұрын
Thank you, there are more then 2 in Rank, what should we do in TIE, =IF(COUNTIF)>1
@RandyNolson2 жыл бұрын
Use this formula instead to account for more than one duplicate value in the "RANK" column: =[@RANK] + (COUNTIF($C$2:[@RANK],[@RANK]) -1) *1
@kaanonen72102 ай бұрын
@@RandyNolson 😍😍
@ToddTysonChicklett2 жыл бұрын
So helpful!
@ifaniabu2 жыл бұрын
Thank you very useful
@simonaust5262 жыл бұрын
Awesome tutorial, when I get a tie I seem to loose a name in sales person column?
@prying_minds2 жыл бұрын
I have a table with 29 rows. Two of those rows contain formulas in the sort column. When I change a cell external to the table, the formulas recalculate, however, the table doesn't auto sort It doesn't seem to recognise a calculated cell in the table sort column changed. If I change a different cell in that column (a non calculated cell) the sort happens. Is there a way for the code to recognize that a calculated cell changed?
@blavena2 жыл бұрын
having 2 3rds and no 4th makes perfect sense, what doesnt make any sense is ranking differently the exact same value... anyways, great tutorial, very helpful
@ubaidillahmuhammad203 жыл бұрын
nice. please post video about sumproduct multi criteria, date range.
@ABellaLuna Жыл бұрын
Is there a way to do this when its sorting more information? I have a list of projects where the due dates change as do the priority (High, Medium, Low). Is there a way to sort it first by Priority then by Due Date?
@praveentg87982 жыл бұрын
Thank you Sir, its really helpful for my analysis... :)
@ZeljkoDejanovic-pe8ge5 ай бұрын
Hi Chester, would the first solution work if the data in the table is live data and it changes in real time? Would the sorting still be in real time in the second table?
@dansmethurst46102 жыл бұрын
Great video, is this method still possible if, using your example, the sales were calculated by an =average formula using data from previous columns within the same row?
@leeholloway62849 ай бұрын
You da man! 🎉
@donnaround14992 жыл бұрын
Great tutorial. How can to ascending order?
@timrussell2488 Жыл бұрын
What formula would you use if you had more than 1 record that was a tie when you did the countif?
@washingtonamollo4365 Жыл бұрын
Good work
@proleter3732 жыл бұрын
Excellent!
@DanaVais Жыл бұрын
What about when you need to sort text data by list. Meaning I have Type A, Type B, and Type C (not alphabetical) and need it sorted in that order. How do I do that?
@engineerchaos84242 жыл бұрын
How can I sort by priority of three columns inline using VBA? Say I have days, hours, minutes, How do I auto sort by days, then hours, then minutes?
@Silentwarzone3 жыл бұрын
my table contains hyperlinks referenced to other cells. What i type in those cells is what is displayed in the table as a friendly names of the hyperlinks, however the code doesn't detect indirect change i suppose because it doesn't sort it unless I interact with it directly.
@NextGenAdvertising-gc1ny5 ай бұрын
Has the VBA code been removed? I'm not seeing it.
@mikevanlieshout1624 Жыл бұрын
How does the code change when I want to use this for multiple tables within the same sheet?
@laurenberry94955 ай бұрын
What happens if I want to use this code for multiple tables in one single worksheet? How can I go about this?
@Sandman03276 Жыл бұрын
how do you write the VBA to allow inserting a new row?
@danielc45072 жыл бұрын
So when I use the Tie formula =IF(COUNTIF($C$2:[@Rank],[@Rank])>1,[@Rank]+1,[@Rank]), it does the correct action by adding 1. The problem is, now, the tied value adds +1, but now instead of having two 3's, I have two 4's.
@poekek54718 ай бұрын
How do you solve ties if three or more people have the same score/salary?
@samiodeh37852 жыл бұрын
If i don't have 364 And am null in vba Is there another solution Please reply Thnx
@hollysmith22642 жыл бұрын
Can anyone help? I am trying to VBA method and keep getting this error message. Is it because the column I am trying to sort by contains dates rather than currency? If so is there a way to easily modify this code to make it work for dates? Thank you in advance!
@hollysmith22642 жыл бұрын
Run-time error '1004': Method 'Range' of object '_Worksheet' failed
@obviouslyhayden11502 жыл бұрын
just comes up with #Value when i try and make that second table to sort..
@sakyiamahkwame2 жыл бұрын
nice pls i need help
@ztrkmtrk423 жыл бұрын
What happens when there is more then 1 tie.
@RandyNolson2 жыл бұрын
Use this formula in the "Tie? column instead (adjust as necessary) =[@RANK] + (COUNTIF($C$2:[@RANK],[@RANK]) -1) *1
@mikezhang8861 Жыл бұрын
@@RandyNolson Genius
@jackdanielo49412 жыл бұрын
What if there are three ties or more?
@will07fca30 Жыл бұрын
Jack, I have the same question. Great tutorial but I am using this for a quiz outcome and in some occasions I have 10 players with 5 of them having the same number of points. What then seems to happen is the resulting form starts missing names and results. No clue how to fix this.
@wayneredler2455 Жыл бұрын
@@will07fca30 Same problem here - pulling my hair out