Innholdsfortegnelse
UBound Beskrivelse
Returnerer det høyeste abonnementet for en dimensjon av en matrise.
Enkle UBound -eksempler
1234 | Sub UBound_Example ()Dim a (3 til 10) som heltallMsgBox UBound (a)Slutt Sub |
Resultat: 10
UBound Syntax
1 | UBound (ArrayName, [Dimension]) |
UBound -funksjonen inneholder 2 argumenter:
Matrisenavn: Navn på Array -variabel.
Dimensjon: [Valgfritt] Heltall som angir hvilken dimensjons nedre grense som returneres. Bruk 1 for den første dimensjonen, 2 for den andre, etc. 1 hvis den er tillatt.
Eksempler på Excel VBA UBound -funksjon
1234567 | Sub UBound_Example1 ()Dim arrValue (1 til 5, 4 til 8, 12 til 25)MsgBox UBound (arrValue)MsgBox UBound (arrValue, 1)MsgBox UBound (arrValue, 2)MsgBox UBound (arrValue, 3)Slutt Sub |
Resultat: 5, 5, 8, 25
LBound Beskrivelse
Returnerer det laveste abonnementet for en dimensjon av en matrise.
Enkle LBound -eksempler
1234 | Sub LBound_Example ()Dim a (3 til 10) som heltallMsgBox LBound (a)Slutt Sub |
Resultat: 3
LBound Syntax
1 | LBound(ArrayName, [Dimension]) |
LBound -funksjonen inneholder 2 argumenter:
Matrisenavn: Navn på Array -variabel.
Dimensjon: [Valgfritt] Heltall som angir hvilken dimensjons nedre grense som returneres. Bruk 1 for den første dimensjonen, 2 for den andre, etc. 1 hvis den er tillatt.
Eksempler på Excel VBA LBound -funksjon
1234567 | Sub LBound_Example1 ()Dim arrValue (1 til 5, 4 til 8, 12 til 25)MsgBox LBound (arrValue)MsgBox LBound (arrValue, 1)MsgBox LBound (arrValue, 2)MsgBox LBound (arrValue, 3)Slutt Sub |
Resultat: 1, 1, 4, 12