Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Right now I have a working macro that reorders my list of tools by their diameter and then their name but it is slow. Was wondering if there could be a faster way that would be instantaneous and not have to watch each tool being moved.
Attached is a video of what the macro looks like and the macro
// First sorting operation on the second option (name)
FOREACH tl IN (sort(folder('tool'),'name')) {
ORDERSESSION Tool $tl.name FIRST
}
// Second sorting operation on the main criteria ( diameter)
FOREACH tl IN (sort(folder('tool'),'diameter')) {
ORDERSESSION Tool $tl.name FIRST
}
Intel Core i9 13900KF CPU
128 GB Kingston Beast DDR4 SDRAM
PNY RTX A2000 6GB Video Card
WD 1 TB SSD Hard Drive
Windows 11 Pro
Solved! Go to Solution.