Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.9k views
in Technique[技术] by (71.8m points)

vba - How to retrieve range.address which is longer than 255 character?

I am having hard time with retrieving range.address which is longer than 255 characters. My range consists of multiple fragmented ranges, its address looks like this: "A1:B3, C4, K7:T6, A3:D3"

Currently I am working on a range with address longer than 1000 characters. The sad thing is I have not been able to get the full address with range.address. I got only 255 first character.

Any help is appreciated :)

By the way, I have read Microsoft's work around on passing string longer than 255 chars at http://support.microsoft.com/kb/105416 . But that's about passing string, not about returning string, so...yeah.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I didn't realize that there are limitation in range address length. Similarly to @Rory solution I loop through range areas but my solution uses function which returns long address string.

Function LongSelectionAddress(rngToGetAddress As Range) As String
    Dim LongAddress As String, rngArea As Range

    For Each rngArea In rngToGetAddress.Areas
        LongAddress = LongAddress & rngArea.Address & ","
    Next rngArea

    LongSelectionAddress = Left(LongAddress, Len(LongAddress) - 1)
End Function

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...