Title Changed 03.02.2015 by Alan from
Re: Range Object Hyperlinks(Item) – List order Anomaly
.......Original
Range Object Hyperlinks(Item) – List order Anomaly
Hi,
. Hope this is in the right Sub Forum. (It may border between Basics and Normal or even Advanced)
. I was recently handling large amounts of Hyperlinks using VBA.
. I sometimes had a Spreadsheet Range where all cells contained Hyperlinks. As is Typical practice I “captured” this Range as a Range object. Here a typical exert from such a code:
![]()
Please Login or Register to view this content.
. After doing this I can, for example, pick out the various (attributes? If that is the word??) from the item list of the Hyperlink “bit” inside the one big Range Object. For example, I was interested in obtaining the URL string. By inspection of the contents in the Watch Window shown for my Object”Captured”Range the URL string I wanted was seen to be one of the (“Attributes??) for each Hyperlink Item. A typical code exert then to obtain this would be of the form:
…. Where ItemNumber is a Whole Number variable![]()
Please Login or Register to view this content.
. After many frustrating hours after getting weird mixed up order listings I identified that the Item list Order is somewot weird:
. I attempt to demonstrate this graphically as best I can:
. If this is a spreadsheet range of Hyperlinks:
- A B C 1 Link 1 Link 8 2 Link 2 Link 9 3 Link 3 Link 10 4 Link 4 Link 11 5 Link 5 Link 12 6 Link 6 Link 13 7 Link 7 Link 14 8
..... then this is the corresponding order of the Items held within the Range Object:
Item 7 Item 1 Item 2 Item 3 Item 4 Item 5 Item 6 Item 14 Item 8 Item 9 Item 10 Item 11 Item 12 Item 13
. Once I realized this I was able to “Bodge” my way around it.
. But my 3 main Questions.
. 1) Could experienced users confirm for me that this is (always) the case and point me in the direction of any literature confirming this.
. 2) Is there some way to change the default order to something more sensible?
. I ask these questions as I am very inexperienced and am somewot wary of using something which appears to behave in a very peculiar way. I am therefore not sure if it would always do it in this way.
. I note for example that in the same Range object I may obtain the name of the link through the Property using something of the form
. .Value2(Row , Column)
. --- .. in this case the Values2() are held in an Array which looks identical both in size and order to the how the Spreadsheet Range A1 to B7 looks.
(. 3) Just something minor I noticed in passing. In the Watch Window it appears that the number of items are Limited to 256. However, my final macro is working to date for over a thousand Hyperlinks. And Indeed in the Watch Window Values2 does not appear to be so limited. Can someone confirm that the limit is above 256? )
. So basically I am looking for some clarity from someone who has more in depth knowledge of how VBA is working on how / why this peculiar order is used and if I can rely on it always being so...
. Many Thanks
Alan Elston.
P.s. If it helps I enclose the file where I was investigating this strange Anomaly with a small sample of data.
https://app.box.com/s/2ehgbdysv6uilc0g7z7jxi3t6xvw6njt
. There are 5 sheets.
. For each sheet there is one macro in each Sheet Module.
. In the Final 2 Sheets I have a done a somewot crude “Bodge” to give me an Output URL string Array in the same order as the Captured Spreadsheet Hyperlink Range. – If BTW any Profi has a more professional solution for bringing out the URL strings in the correct order (for me “correct” here which would be the order correspond to the order of the Spreadsheet Range) then I would very much appreciate a copy of such a code.
. The Final Code I wrote for example might be a start point for anyone requiring a quick solution to such a problem..
. It will take this arbitrary range
B C 2Apple fresh Apfel 3'Bierwurst' (coarse heat-treated sausage in bladder and smo "Cordon bleu" vom Schwein, bofrost 4'Breslauer' Lyonaise "Peperonata" Paprikazubereitung Vogeley GV 5'Gaisburger Marsch' (potatoes with beef) (1) "Pomona" Tomtenpüree-Konzentrat Vogeley GV
and after running the macro “SpreadsheetRangeCaptureHyperlinkItemOrderBodged2()” it will give the outputted URL strings, in this form and correct order
A B 17http://www.ernaehrung.de/lebensmittel/en/F110100/Apple-fresh.php http://www.ernaehrung.de/lebensmittel/de/F110000/Apfel.php 18http://www.ernaehrung.de/lebensmittel/en/W255400/%27Bierwurst%27-%28coarse-heat-treated-sausage-in-bladder-and-smo.php http://www.ernaehrung.de/lebensmittel/de/BOFRO1287/Cordon-bleu-vom-Schwein,-bofrost.php 19http://www.ernaehrung.de/lebensmittel/en/W231100/%27Breslauer%27-Lyonaise.php http://www.ernaehrung.de/lebensmittel/de/VOGEL15805/Peperonata-Paprikazubereitung-Vogeley-GV.php 20http://www.ernaehrung.de/lebensmittel/en/X468713/%27Gaisburger-Marsch%27-%28potatoes-with-beef%29-%281%29.php http://www.ernaehrung.de/lebensmittel/de/VOGEL15807/Pomona-Tomtenpueree-Konzentrat-Vogeley-GV.php
Code:
![]()
Please Login or Register to view this content.
Bookmarks