Office: (Office 2003) Mit VBA Button- Excelspalte springen

Helfe beim Thema Mit VBA Button- Excelspalte springen in Microsoft Excel Hilfe um das Problem gemeinsam zu lösen; <!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>21</w:HyphenationZone>... Dieses Thema im Forum "Microsoft Excel Hilfe" wurde erstellt von Schiffhexler, 22. Juni 2015.

  1. Schiffhexler
    Schiffhexler Erfahrener User

    Mit VBA Button- Excelspalte springen


    <!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>21</w:HyphenationZone> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--> Moin zusammen,

    ich habe eine Excel - Datei mit einer Spalte mit Geräte Nummern. Von der Excel Seite rufe ich über Hyperlink Wordseiten auf.
    Hier im Forum habe ich für den Button VBA Sachen rausgezogen. Das klappt bis jetzt.
    Aber ich kenne mich damit nicht aus. Der Button färbt mit kurz das Feld ein, die Zeit kann ich ja anpassen.
    Nur wenn das über den Bildschirm geht, läuft die Spalte nicht nach unten. Das Feld soll ja nicht eingefärbt bleiben.
    VBA Kenntnissse sind bei mir auf Null, da habe ich nur was gebastelt.
    Es wäre Nett, wenn sich von den Experten das anschauen würde.

    Gruß Schiffhexler

    <!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings> </xml><![endif]--> Nachtrag

    Private Sub CommandButton1_Click()
    Dim Zelle As Range, Bereich As Range
    Dim Such As String
    Dim Ergebnis As String
    Set Bereich = Sheets("Tabelle1").Range("C4:L100")
    Such = InputBox("Suchwert:")
    For Each Zelle In Bereich
    If Zelle = Such Then
    Ergebnis = Ergebnis & ", " & Cells(4, Zelle.Column)
    Zelle.Interior.ColorIndex = 3
    End If
    Next Zelle
    If Ergebnis = "" Then
    MsgBox "Nix gefunden"
    Else
    Application.Wait (Now + TimeValue("0:00:02"))
    End If
    Bereich.Interior.ColorIndex = 0
    End Sub
    <!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>21</w:HyphenationZone> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> </w:Compatibility> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Normale Tabelle"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;} </style> <![endif]-->

    <!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Normale Tabelle"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;} </style> <![endif]-->
     
    Zuletzt bearbeitet: 23. Juni 2015
    Schiffhexler, 22. Juni 2015
    #1
  2. Beverly
    Beverly Erfahrener User
    Hi,

    kommt der Suchbegriff mehrfach vor oder nur einmal im Zellbereich C4:L100?

    Bis später,
    Karin
     
    Beverly, 24. Juni 2015
    #2
  3. Schiffhexler
    Schiffhexler Erfahrener User
    <!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings> </xml><![endif]--> Moin Karin


    Danke für die Reaktion

    Der Suchbegriff kommt nur einmal vor


    Gruß Schiffhexler

    <!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>21</w:HyphenationZone> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> </w:Compatibility> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Normale Tabelle"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;} </style> <![endif]-->
     
    Schiffhexler, 24. Juni 2015
    #3
  4. Beverly
    Beverly Erfahrener User

    Mit VBA Button- Excelspalte springen

    Hi,

    dann sollte dieser Code ausreichend sein:

    Code:
    Private Sub CommandButton1_Click()
        Dim Zelle As Range, Bereich As Range
        Dim Such As String
        Set Bereich = Sheets("Tabelle1").Range("C4:L100")
        Such = InputBox("Suchwert:")
        If Such <> "" Then
            Set Zelle = Bereich.Find(Such, lookat:=xlWhole)
            If Not Zelle Is Nothing Then
                Application.Goto reference:=Cells(Zelle.Row, 1), Scroll:=True
                Zelle.Interior.ColorIndex = 3
                Application.Wait (Now + TimeValue("0:00:02"))
                Zelle.Interior.ColorIndex = 0
            Else
                MsgBox "Nix gefunden"
            End If
        End If
        Set Bereich = Nothing
        Set Zelle = Nothing
    End Sub
    
    Bis später,
    Karin
     
    Beverly, 24. Juni 2015
    #4
  5. Schiffhexler
    Schiffhexler Erfahrener User
    <!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings> </xml><![endif]--> Moin Karin


    Danke, da kann ich nur sagen *das ist einfach Spitze!
    Es klappt wunderbar.



    Früher habe ich mich mit Basic Poke und Peek rumgeschlagen (1982),
    aber bei VBA einsteigen, die Zeit ist für einen Rentner ist vorbei.

    Gruß Schiffhexler

    <!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>21</w:HyphenationZone> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> </w:Compatibility> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Normale Tabelle"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;} </style> <![endif]-->
     
    Schiffhexler, 24. Juni 2015
    #5
  6. Beverly
    Beverly Erfahrener User
    Hi,

    es ist nie zu spät, etwas neues zu lernen - auch nicht als Rentner :D

    Ich habe übrigens auch Anfang der 80er angefangen - mit BASIC und dBASE ;)
    VBA ist übrigens nicht ganz so weit weg davon, wie es den Anschein hat - auch wenn man erst einmal von vielen neuen Befehlen erschlagen wird - die Prinzipien bleiben dieselben... :p

    Bis später,
    Karin
     
    Beverly, 24. Juni 2015
    #6
  7. Schiffhexler
    Schiffhexler Erfahrener User
    <!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings> </xml><![endif]--> Moin Karin


    Du machst mit Mut. Mit VBA Button- Excelspalte springen :eek:

    Mal schauen, ob ich mir in dieser Richtung da was vorknöpfe. Im Netz schreibe ich viele Reparaturtyps.

    Wenn ich an das alte 9 Nadelhammerwerk (1700 DM) denke, ohne Treiber, dafür selbst einen geschrieben,

    das war ein Aufwand. Man sagt doch immer → rann am Feind


    Gruß Schiffhexler


    <!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>21</w:HyphenationZone> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> </w:Compatibility> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Normale Tabelle"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;} </style> <![endif]-->
     
    Schiffhexler, 24. Juni 2015
    #7
  8. Schiffhexler
    Schiffhexler Erfahrener User

    Mit VBA Button- Excelspalte springen

    <!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings> </xml><![endif]--> Hallo, ich begrüße euch schon wieder,

    wenn ich das in meine Datei reinsetze, dann erscheint folgendes: Laufzeitfehler "9":

    Index außerhalb des gültigen Bereichs
    Debuggen angezeigt wird; Set Bereich = Sheets("Tabelle1").Range("K3:K150") → ist gelb

    Die Datei besteht aus 20 Excel- Seiten, wo ich das reingesetzt habe, ist die Seite 9, die habe ich mit Index benannt.
    Versucht habe ich bei Sheets("Tabelle9") auch ("TabelleIndex") einzugeben, aber ich bekomme immer die rote Karte.
    <!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings> </xml><![endif]--> Dabei klappte das bei der separaten Datei einwandfrei.
    <!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>21</w:HyphenationZone> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> </w:Compatibility> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Normale Tabelle"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;} </style> <![endif]-->
    Gruß Schiffhexler


    <!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>21</w:HyphenationZone> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> </w:Compatibility> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Normale Tabelle"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;} </style> <![endif]-->
     
    Schiffhexler, 26. Juni 2015
    #8
  9. Beverly
    Beverly Erfahrener User
    Man kann ein Tabellenblatt folgendermaßen ansprechen:

    - über den Namen: Worksheets("Tabelle1").Range("K3:K150") <== Name der auf dem Tabellenreiter steht
    - über den Index: Worksheets(2).Range("K3:K150") <== Position in der Reihenfolge der Tabellen
    - über den Codenamen: Tabelle1.Range("K3:K150") <== Codename, der unabhängig von der Reihenfolge und vom Namen auf dem Tabellenreiter ist

    Bis später,
    Karin
     
    Beverly, 26. Juni 2015
    #9
  10. Schiffhexler
    Schiffhexler Erfahrener User
    Moin Karin,

    Jetzthabe ich das eingefügt: Worksheets(9).Range("K3:K150") <== Pos. in der Reihenf.
    Das war der Casus knacktus, es marschiert in der Arbeitsmappe.
    Danke und 100 Punkt

    Gruß Schiffhexler
     
    Schiffhexler, 26. Juni 2015
    #10
  11. Beverly
    Beverly Erfahrener User
    Hi,

    noch ein Hinweis am Rande: den Index sollte man nur dann benutzen, wenn man sicher ist, dass die Reihenfolge der Tabellenblätter nicht verändert wird - andernfalls gibt es Probleme, wie du dir sicher vorstellen kannst.

    Bis später,
    Karin
     
    Beverly, 27. Juni 2015
    #11
  12. Schiffhexler
    Schiffhexler Erfahrener User
    <!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:RelyOnVML/> <o:AllowPNG/> </o:OfficeDocumentSettings> </xml><![endif]--> Moin Karin,



    Danke für die Mitteilung, dass ist mit klar.

    Bis zur nächsten Katastrophe Mit VBA Button- Excelspalte springen [​IMG]


    Gruß Schiffhexler

    <!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>21</w:HyphenationZone> <w:PunctuationKerning/> <w:ValidateAgainstSchemas/> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables/> <w:SnapToGridInCell/> <w:WrapTextWithPunct/> <w:UseAsianBreakRules/> <w:DontGrowAutofit/> </w:Compatibility> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Normale Tabelle"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;} </style> <![endif]-->
     
    Schiffhexler, 27. Juni 2015
    #12
Thema:

Mit VBA Button- Excelspalte springen

Die Seite wird geladen...
  1. Mit VBA Button- Excelspalte springen - Similar Threads - VBA Button Excelspalte

  2. Excel VBA mit Toggle Button Zeile einfärben

    in Microsoft Excel Hilfe
    Excel VBA mit Toggle Button Zeile einfärben: Hallo, ich habe ein Makro für einen activeX Toggle Button. Wenn dieser nicht betätigt ist, sollen bestimme Zellen in einer Reihe ihre Hintergrundfarbe ( hexal #FFFFFF ; RGB 255 255 255)...
  3. STRG+F via Button mit VBA

    in Microsoft Excel Hilfe
    STRG+F via Button mit VBA: Moin, ich habe ein Problem, welches ich nicht im Stande bin alleine zu lösen. Ich habe eine Excel-Tabelle, wo Stellplätze von 3 Kühlhäusern aufgeführt sind. Die Excel wird auf einem Panel-PC...
  4. Toggle Button mit Passwort schützen

    in Microsoft Excel Hilfe
    Toggle Button mit Passwort schützen: Hallo zusammen, leider habe ich kaum Ahnung von VBA-Codes, deshalb frage ich hier nach eurer Unterstützung. In einer Excel-Datei soll es einen Toggle-Button geben, der entweder "Freigegeben"...
  5. Abbrechen Button bei Inputbox

    in Microsoft Excel Hilfe
    Abbrechen Button bei Inputbox: Hallo zusammen, ich habe folgendes Problem: wenn ich bei meiner InputBox auf "Abbrechen" oder auf das "X" zum Schließen des Dialogfeldes drücke, erscheint die Fehlermeldung "Typen unverträglich"....
  6. Excel VBA Problem create button

    in Microsoft Excel Hilfe
    Excel VBA Problem create button: Hallo liebe Community, ich hoffe ihr könnt helfen, bin am verzweifeln und kann den Fehler einfach nicht finden. Wir haben eine aufwendig gestallte Excel Liste, wo wir unter anderem Button...
  7. Über Command Button dynamisch Dokumente öffnen

    in Microsoft Excel Hilfe
    Über Command Button dynamisch Dokumente öffnen: Hallo Zusammen, Ich habe eine Tabelle in der über unterschiedliche Kriterien, Produkte angezeigt werden. Nun möchte ich dazu, zu dem entsprechenden Produkt, über einen CommandButton die...
  8. Excel VBA Suche mit Hilfe Command Buttons anzeigen

    in Microsoft Excel Hilfe
    Excel VBA Suche mit Hilfe Command Buttons anzeigen: Hallo Ich habe eine UserForm erstellt, welche mit voneinander Abhängige Comboboxen sucht. Dabei wurde mir schon geholfen in diesen Forum. Ich würde mir gerne das Ergebnis mithilfe eines...
  1. Diese Seite verwendet Cookies, um Inhalte zu personalisieren, diese deiner Erfahrung anzupassen und dich nach der Registrierung angemeldet zu halten.
    Auf dieser Website werden Cookies für die Zugriffsanalyse und Anzeigenmessung verwendet.
    Wenn du dich weiterhin auf dieser Seite aufhältst, akzeptierst du unseren Einsatz von Cookies.
    Information ausblenden