excel vba: array definieren

Speichern Von Variant-Werten in Arraysstoring Variant Values in Arrays The basic syntax of the VBA range command is as follows: Range(Cell 1. Zugriff auf Daten über VBA und Bereichsnamen. The time saving is quite noticeable and it is a bit easier to access and modify the data there. This is because it's (fairly) easy to access each array position in a loop - you just use the loop variable between the round brackets of the array. Resize the array. Dieser Beitrag ist ein Teil der VBA Grundlagen Serie. I highly recommend that you check this guide out before asking me or anyone else in the comments section to solve your specific problem. In diesem How-To zeige ich Ihnen wie Sie einen Tabellenbereich mithilfe von VBA definieren und füllen können. Excel – Makros und VBA, 01.04.09 Seite 3 Ausdruck ... besteht aus Operanden und Operatoren, die nach bestimmten Regeln zusammengesetzt werden. Arrays can be mapped perfectly to ranges in a spreadsheet, which is why they are so important in Excel. One named size and one named i. Dim numbers() As Integer, size As Integer, i As Integer. What is an Array. This first example combines the OR function with the IF Statement in VBA: If LWebsite = "TechOnTheNet.com" Or LCount > 25 Then LResult = "Great" Else LResult = "Fair" End If. As we have seen in the above code, we learned we could store more than one value in the variable based on the array size determined. For example one index represents the rows and other represnts the columns. Read More… Assigning Values to an Array. Excel VBA – Definierten Bereich füllen und leeren. For example one index represents the rows and other represnts the columns. Now what we need to do is do not decide the array length well in advance. Excel VBA - Die wichtigsten Befehle Folge 06. Now for this variable, let’s insert values by using VBA ARRAY function. If not, you can take this introductory course on Excel VBA or go through this excellent tutorial that will help give you an overview of VBA. Wenn Position 0 oder 1 von der Funktion zurückgegeben wird, stellen Sie sicher, dass die Funktion nicht mit True oder False verwechselt wird. The new array has the following elements: array1 (0) = 5. array1 (1) = 8. array1 (2) = 2. Jiohn W says. An example would be storing a list of countries or a list of weekly totals. And performance-wise, it's now as fast as it's going to get (pretty much instant), regardless of the size of the returned array. eine Art von Platzhalter für Zeichenfolgen, Werte und Objekte. Excel array formulas have always been considered a prerogative of gurus and formula experts. Ausgeblendet. VBA takes round brackets as a signal that you want to set up an array. This definition can be further extended by referencing 3 ... but the strongest has to do with Excel VBA data types. Matrizen in VBA werden als Arrays bezeichnet. Das erste Argument stellt die Zeilen, das zweite Argument die Spalten dar. Adding items to a VBA array is just much easier when using the arraylist class. Ausgeblendet . August 22, 2013 by Sumit Jain. Juli 2017, 10:36. If we want to copy from an Array to an ArrayList we need to create our own function which I have done below. Excel VBA then changes the size of the array automatically. Type Tname_Of_Data_Type var1 as datatype 'datatype can be anything, int, array,or even UDT var2 as datatype Var3 () as datatype --- VarN () as datatype End Type. An array is a group of variables. VBA-Forum. Hallo, ich habe derzeit einen Array wie folgt definiert: [ID, Abk, Text, aktiv] Über einen Array lese ich [ID, Abk, Text] ein und verarbeite die Werte … Ein Array (gelegentlich auch „Datenfeld“ genannt) ist dagegen ein Container für mehrere Werte. March 26, 2021 at 6:07 pm. We can refer to a specific element in the array by using the array … Sie können im Laufe einer Prozedur über eine Zuweisung durch Zeichenfolgen, Werte und Objekte ersetzt werden. You can considerably increase the performance of your Excel application by passing arrays of data to the worksheet, and vice versa, in … Data transfer between worksheet cells and VBA variables is an expensive operation that should be kept to a minimum. Pin +1. Excel VBA: So schalten Sie das Bildschirm-Flackern in Ihren Makros aus Lesezeit: < 1 Minute Wenn Sie in Excel Makros abspielen und z. If the value IsDate, then the caller can work with dates without ever having to deal with how VBA might be representing that date value in a String. In der folgenden Codezeile wird ein Array fester Größe als Integer -Array mit 11 Zeilen und 11 Spalten deklariert: VB. Aus C/C++ etc ist das bekannt und möglich, doch in VBA will das bei mir nicht. Retrieve values from array. Syntax. zB: Dim … It is used to store lists of data of the same type. You declare an Array just like a variable: Dim MyArray(4) As Integer The only difference is the round brackets after the variable name. It's one dimensional because there's only one column of items. auch mehrdimensional) zunächst von Excel in ein VB-Array laden. VBA Two-Dimensional Array in Excel. Array to a VBA ArrayList(1D) As we have seen, there is an in-built function ToArray which will copy from an ArrayList to an Array. Es handelt sich um Datenfelder, die Daten je nach der Dimensionierung aufnehmen können.Man kann sich ein Array wie eine Tabelle vorstellen. B. zwischen mehreren Zellen/Blättern/Mappen hin und her springen, flackert der Bildschirm während des Ablaufs. As the name indicates, multi dimensional arrays are arrays that contain more than one dimension, usually two or three but it can have up to 32 dimensions. In VBA, an array is a memory location which is capable of storing some value or more than one value in it. In this VBA Array example, we are going to do following things. An example of how to use Excel VBA Dictionary of arrays data structure. What is an array. Excel VBA Declare Array. Introduction. Die einzelnen Dimensionen werden durch Kommata getrennt angegeben. Ich will in einem Modul eine Array deklarieren, welches direkt mit Werten initialisiert wird. This function tests whether the array has actually ' … How to Program a VBA Array in Excel. Größe und Datentyp festlegen. The two indexes are separated with comma symbol. One-dimensional Array. Dim arr() As Variant; arr = … [code] Quad = Array (Rechteck0, Rechteck1, Rechteck2, Rechteck3, Rechteck4)/code]dieses Array brauch ich jedoch auch in mehreren Subs und Funktionen, aber es immer wieder neu zu definieren wäre ja … Create a new Microsoft Excel workbook and save it as Excel Macro-Enabled Workbook (*.xlsm) Add a command button to the workbook ; Set the name and caption properties of … Excel VBA String Array. Zurück zum Archiv. There are 3 types of arrays in VBA, One … In einem allgemeinen Modul: Option Explicit Public Sub FeldTest1 () Dim fMeinFeld (2) As Long, i As Long For i = 1 To 2 fMeinFeld (i) = i + 1 Next i For i = LBound(fMeinFeld) To UBound(fMeinFeld) … But this process is quite lengthy when the variable count goes above 5. Array deklarieren, Doppelte Werte entfernen und ausgeben. VBA-Editor in Excel öffnen Es ist sehr einfach, den VBA-Editor in Excel zu öffnen und dann mit dessen Hilfe einige Makros zu erstellen. Um Variablen verwenden zu können, musst Du sie zunächst deklarieren. What are the different types of arrays? Rückgabewert eines Elements in einem Array Excel VBA (4) Achten Sie darauf, ob das Array bei Null oder Eins beginnt. wüsste mal gerne, wie man ein Array global deklarieren kann. A function is a group of reusable code which can be called anywhere in your program. While this … numbers, size and … What Is An Excel VBA Array According to the Microsoft Dev Center, an array is: A set of sequentially indexed elements having the same intrinsic data type. In the following example, the size of the array is mentioned in the brackets. Arrays are variables that allow us to store more than value in a single variable. August 22, 2013 by Sumit Jain. This enables the programmers to divide a big program into a number of small and manageable functions. In this post I will demonstrate how to use Dictionaries in Excel VBA in order to calculate, store and use data summarized on different criteria. Place a command button on your worksheet and add the following code lines: 1. Multi-Dimensional Array (2D Arrays) Multi-dimensional Arrays are arrays that contain more than one dimension, usually two or three dimensions, but arrays can… If Array size is 4, then the index ranges from 0 to 4. As an example, let’s look at a product sales spreadsheet, where you want to pull the sales rep’s name, item, and total sale out of the spreadsheet. It will return TRUE for both ' allocated and unallocated arrays. Beim ersten Beispiel definieren Sie zunächst eine Variable von Typ Variant. There are two primary ways to loop through Arrays using VBA: For Each Loop – The For Each Loop will loop through each item in the array. Store values in array. Why declare variables multiple times when we can frame that into String Array. gelöst Frage Entwicklung VB for Applications. Anders gesagt, sie ist ein „Container“ für einen Wert. ... verändert den Wert von Variablen entsprechend des Anschließend werden die Werte wieder gelöscht. Declaring a variable tells the computer to allocate space in memory for later use. One-dimensional Array. Entscheidend dabei ist, wie die Variable zu Beginn oder im späteren Verlauf dimensioniert wird. Each element of an array has a … Retrieve values from array. A VBA array is a type of variable. This would set the LBandwidth variable to the string value "Low" if both LWebsite was … Let's look at some Excel AND function examples and explore how to use the AND function in Excel VBA code. arrays - example - excel vba string array definieren . A VBA String Array is used when we need to hold more than one string value with a … Zurück zum Forum. The introduction of dynamic arrays is a long awaited and most welcome change. VBA-Excel: Arrays – Two Dimension, Dynamic Array. gelöst Frage Entwicklung VB for Applications. Range ("A1"). Danach sollen alle einzelnen Elemente aus dem Array genau in der Reihenfolge abgearbeitet werden in der Simultion, wie sie auch in der Tabelle stehn. Wenn für einen Zellbereich ein Bereichsname vergeben wurde, kann auf diesen über VBA zugegriffen, also gelesen und geschrieben werden. VBA arrays definition in Excel Arrays are tantamount to variables except that, they store more than one value. Begründung: VBA darf das statische Array nicht beliebig erweitern oder verringern, kann jedoch bei der Funktion, welche ein Array zurückgibt, nicht prüfen, ob es mit der Größe des statisch vorgegebenen Array übereinstimmt. In diesem Beispiel wurde ein Bereich mit einer Größe von 12 Zeilen und 2 Spalten definiert. To define a structure or UDTs in VBA we use Type___End Type block. Dieser Beitrag ist ein Teil der VBA Grundlagen Serie. For most of the time we use One-dimension Array, therefore this tutorial will only talk about One-dimensional Array. Hallo Leute, ich weiß, es gibt viele Themen zu diesem Thema, aber ich habe google durchforstet und viele Themen hier gelesen und ich bin anscheinend zu blöd die Puzzelteile zusammen zusetzen. Forumhilfe. We will create a simple application. Array index always starts from 0. January 30, 2015. An array is a group of variables which share the same data type and name.When we work with a single item only one variable is needed. In this article, I explain the best strategies I have come up with over the years to getting quick answers to complex problems in Excel, PowerPoint, VBA, you name it! ... ist eine Verarbeitungsvorschrift, die einen Wert als Ergebnis liefert. To create a one-dimensional array, execute the following steps. Habe dazu schon viele Beispiele im netz gefunden, von denen keiner funktioniert. If someone says "This can be done with an array formula", an immediate reaction of many users is "Oh, isn't there another way?". Dazu gibt es dann ein Modul wo für ganz viele Sheets diese Funktion ausgeführt werden soll und deshalb soll das füllen der Arrays so kurz und übersichtlich wie möglich machbar sein. Note: the array has no size yet. Arrays in VBA are a little finicky and require a different procedure than programming langauges like C or Python. VBA Arrays And Worksheet Ranges. Dieses Flackern können Sie mit einem einfachen VBA-Befehl in Ihren Makros einfach ausschalten. ranges spread over multiple worksheets). In VBA, Array is a variable that can store multiple data of the same data type. Tweet. If so, you can declare an array and initialize it by supplying an array constant – gee, isn’t that what you asked for? Reader Interactions. For Next Loop – The For Next Loop will loop through specified start and end positions of the array (We can use the UBound and LBound Functions to loop through the entire array). VBA-Excel: Arrays – Two Dimension, Dynamic Array. You can also do exactly the same in VBScript and Powershell, which I have covered in the linked posts. Hier erstmal der Code, den ich bisher habe: VB.NET-Quellcode. Was funktioniert: Ich kann über IBH-Link und ISO_on_TCP einzelne Werte aus der Steuerung lesen. For creating two dimensional dynamic array in excel, follow the steps below: Declare the two dimensional Array. We refer Excel worksheet or table for 2Dimensional arrays. In this ArticleMulti-Dimensional Array (2D Arrays)Declare a 2D ArrayPopulating a 2D ArrayPopulating a 2D Array from Excel dataResizing using ReDim and Re-Dim Preserve This tutorial will discuss 2-d and multi-dimensional arrays in VBA. In VBA a normal variable can store only one value at a time. Type in your formula, e.g. Types can also be declared within Forms and Classes, however, have to be declared Private (scoped only to Form or Class) VBA Types can’t: Es handelt sich hierbei um eine Art Produktionsplan. Code: As you can see above inside the parenthesis, I have not written any lengths. In unserem Beispiel wollen wir die Umsätze in den Bereich B2 bis G2 schreiben. VBA - User Defined Functions. 19.08.2014, aktualisiert 14:30 Uhr, 14255 Aufrufe, 7 Kommentare, 1 Danke. In Excel worksheet, you can convert a formula arguments to Array by pressing CTRL+SHIFT+ENTER, click here to see example. Two Dimensional Array ahs two dimensions and uses 2 Indexes. Array Declaration. Store values in array. You refer to a “dictionary” which makes me think you are using VB.Net. We refer Excel worksheet or table for 2Dimensional arrays. VBA Arrays Excel – Explained in this topic: What is an Array? Dabei weist Du Ihnen einen Variablentyp zu, dies machst Du in der Regel mit einer Dim-Anweisung. Let’s take a look at a simple program where you may want to load information from a spreadsheet into a multidimensional array. Wie erstelle ich ein Array in VBA? Array Declaration in Excel VBA is very good habit. 0 Shares. This eliminates the need of writing the same code over and over again. All Excel formulas that use a worksheet reference are working with arrays, though most of the time arrays are invisible. In Excel VBA, you can refer to a specific variable (element) of an array by using the array name and the index number. Static arrays are always ' allocated. ' Wenn für einen Zellbereich ein Bereichsname vergeben wurde, kann auf diesen über VBA zugegriffen, also gelesen und geschrieben werden. A VBA 'Array to Range' function Public Sub ArrayToRange(rngTarget As Excel.Range, InputArray As Variant) ' Write an array to an Excel range in a single 'hit' to the sheet ' InputArray must be a 2-Dimensional structure of the form Variant(Rows, Columns) ' The target range is resized automatically to the dimensions of the array, with ' the top left cell used as the start point. Each of the entries in the array can be accessed by an index number. ... verändert den Wert von Variablen entsprechend des A multi array works like a matrix with various levels, take in example a comparison between one, two, and three Dimensions. An array is a group of variables. The 2Dimensional array also called as rectangular array. Anschließend werden die Werte wieder gelöscht. We can declare variable using Dim, Public, Private, or Static statements. Eine „normale“ Variable kann genau einen Wert speichern. How to use Array in Excel VBA. Excel VBA - Listbox mit Array befüllen und Auswahl in Array zurückschreiben. An array values are assigned to an element based on an array index or subscript. SIMM_MARGIN(). An array is a group of variables. Array size defines the number of values it can store at the most. Was sind ein- und mehrdimensionale Arrays / Datenfelder? Variablen werden in VBA als Platzhalter verwendet. Filed Under: How To Tagged With: VBA. Sub ArrayFuellenUndAusgeben () Dim VarDat As Variant Dim rngBereich As Range With Tabelle1 VarDat = Array ("VW", "Audi", "Opel", "BMW") Set rngBereich =. This application populates an Excel sheet with data from an array variable. Für jede Dimension wird der Index des letzten Elements angegeben. But you can have arrays with more than one dimension. excel-vba documentation: Check if Array is Initialized (If it contains elements or not). Arrays. How do I make this work in VBA – I added reference to mscorlib It complies OK but I always … einer Variablen vom Typ Variant einen eindimensionalen Array Access Excel VBA Array. chef1568 (Level 1) - Jetzt verbinden. However, you'll be glad to know that it's a rare programme that uses more than 3 dimensions, or even 2 dimensions. 05.02.09 16:03:41, Aufrufe: 73 [Fest] Re: Daten aus Excel-Tabelle in Array einlesen von . Entering an array formula in Excel is a little bit different to your run of the mill formulas: Select the area on your spreadsheet that you want to return the data to. The arrays in our last lesson were all one dimensional arrays. In VBA you cannot append an item to an array… ReDim staedte(size) 'Dem Array die Werte aus Spalte 1 nach und nach zuweisen For i = 0 To (size – 1) Returning an Array to Excel Typical task: having an array in a DLL send it to Excel where the array is thought to be hold in a C function. Mar 26 2016. First, we declare the array named numbers. Resize the array. 19.08.2014, aktualisiert 14:30 Uhr, 14255 Aufrufe, 7 Kommentare, 1 Danke. As of now, Excel does not support multi-dimensional ranges (i.e. Working with Array Functions and DLLs in Excel VBA - 6 - 3. VBA Types can: Have object such as other VBA Types or VBA Classes as variables; Contain arrays – both static (predefined size) and dynamic (dynamically sized/resized) Be declared within VBA Modules. Press CTRL+SHIFT+ENTER to confirm this formula (instead of just pressing ENTER). Array-Variablen können ganze Datensammlungen aufnehmen. ... formuliert einzelne Schritte eines Programms. Also declare two variables of type Integer. VBA Two-Dimensional Array in Excel. Share. ' The VBA IsArray function indicates whether a variable is an array, but it does not ' distinguish between allocated and unallocated arrays. Arrays are usually used with loops. Excel VBA - Listbox mit Array befüllen und Auswahl in Array zurückschreiben. Mehrdimensionales Array einfach füllen Microsoft Excel MS-Office-Forum > Microsoft Office > Microsoft ... Ja also mit Anwender meine ich quasi Leute die meine Funktion in VBA verwenden. This first example combines the AND function with the IF Statement in VBA code: If LWebsite = "TechOnTheNet.com" And LPages <= 10 Then LBandwidth = "Low" Else LBandwidth = "High" End If. Mein Ziel: Ich möchte alle Werte eines Datenbausteins aus der Steurung lesen und in ein Arrray abspeichern. Algorithms Excel Excel VBA. It is best to run these macros from Visual Basic Editor by using Debug > Step Into (by pressing F8) so you can watch them as they work. I'm not too fond of Select Case True. 'Die Variablen definieren Dim staedte() Dim size As Integer Dim i As Integer 'Anzahl der Einträge in Spalte 1 der Variable size zuweisen size = WorksheetFunction.CountA(Worksheets(1).Columns(1)) 'Die Größe des Arrays anpassen . hi, hier eine kleine demo wie man daten aus zellen in arrays schreibt, bearbeitet und dann wieder zurück in die tabelle schreibt: Private Sub ZellbereichInArrayUndZurueck() Dim i As Long … Excel – Makros und VBA, 01.04.09 Seite 3 Ausdruck ... besteht aus Operanden und Operatoren, die nach bestimmten Regeln zusammengesetzt werden. Usually this is done through safearrays (which I hate and it is not need if using Excel as the main system). This page describes how to transfer data between VBA arrays and worksheet ranges. In Excel VBA, you can refer to a specific variable (element) of an array by using the array name and the index number. This will produce curly brackets {} around the formula. You can run the macros either from the Visual Basic Editor by placing your cursor in the macro and pressing the F5 key, or from Excel by opening the Macros dialog box (ALT+F8) choosing the macro to run and clicking Run. ... ist eine Verarbeitungsvorschrift, die einen Wert als Ergebnis liefert. chef1568 (Level 1) - Jetzt verbinden. In unserem Beispiel wollen wir die Umsätze in den Bereich B2 bis G2 schreiben. These are documented on MSDN. Add some numbers to column A. Share. Multidimensional Arrays. Comments. Excel Visual Basic arrays are structures which are used to store a set of related variables of the same type. Man erkennt ein Array daran, dass nach seinem Namen ein … Two Dimensional Array ahs two dimensions and uses 2 Indexes. Es handelt sich aber immer um eine Variable, die nur verschiedene Daten - getrennt voneinander - … For Each Item in Array For creating two dimensional dynamic array in excel, follow the steps below: Declare the two dimensional Array. So to define a custom data type in VBA we start with Type Keyword. VBA Excel – How to convert range to array easily. Converting a range to array makes a lot of sense in VBA, when some operations should be performed with data in a given range. Zugriff auf Daten über VBA und Bereichsnamen. For example, if you had 20 members of a team and you wanted to store all the names for use in your VBA code. Anfangs der Simultion möchte ich eine Initialisierungsliste (ein- evtl. Arrays gehören zu den sinnvollen und praktischen Werkzeugen bei der Programmierung in VBA. Für die Deklarierung stehen Dir folgende… Array to a VBA ArrayList(1D) As we have seen, there is an in-built function ToArray which will copy from an ArrayList to an Array. To create a one-dimensional array, execute the following steps. Funktionen. You will use the Range function a lot in your VBA programming since it makes selecting a cell or a range of cells so effortlessly easy. Online - Excel VBA Makro Hilfe zu Felder - Arrays (2) - Inhalte Any array operation in your VBA code uses the appropriate SAFEARRAY API functions. The following are the main points that explain why, from these perspective, you should get used to declaring variables when working in Visual Basic for Applications: VBA data types determine the way in which data is stored in the computer's memory. Search XL VBA help for 'union' (w/o the quotes).--Regards, Tushar Mehta www.tushar-mehta.com Excel, PowerPoint, and VBA add-ins, tutorials Custom MS Office productivity solutions Excel VBA Programming Arrays and Loops. Excel VBA – Definierten Bereich füllen und leeren. One Dimensional Array: Multi-Dimensional (Two Dimensional) Arrays: How to Re-size an Array; Array Options; Example File; What is an Array? Posted on October 27, 2017 by Vitosh Posted in VBA \ Excel. array1 = Array ( 5, 8, 2 ) The above call to the VBA Array function returns a one-dimensional array, starting at index 0. The two indexes are separated with comma symbol. Hallo Ich mache gerade meine ersten Gehversuche mit Libnodave. What we'll do now is to store some numbers in an array. In diesem How-To zeige ich Ihnen wie Sie einen Tabellenbereich mithilfe von VBA definieren und füllen können. How to create one-dimensional arrays, fixed sized or dynamic, and how to retrieve its contents. Grundsätzlich gibt es mehrere Möglichkeiten, ein Array zu erzeugen: Über Dim als Datenfeld, z.B. January 30, 2015. der Index des Array entspricht dabei einer Tabellenspalte. Deklarieren eines Arrays fester Größe. ergibt die Anweisung Dim Matrix (1 To 3, 1 To 3) eine 3 × 3-Matrix mit der mathematisch richtigen Indizierung der Zeilen und Spalten jeweils von 1..3 Es wird der höchste Index angegeben. We'll then use a loop to print them out to cells in a spreadsheet. Declaration of array in VBA is very similar to that of variables it is done by the same dim statement or static public or private statement, the only difference in declaring an array and declaring a variable is that while declaring an array we have to provide a size of an array which is upper bound of the array and the lower bound of the array. Here's the syntax of a UDT. Dim array1 As Variant. Dim MyArray (10, 10) As Integer. An array in Excel is a structure that holds a collection of values. If we want to copy from an Array to an ArrayList we need to create our own function which I have done below. Declaration of Arrays. Danach können Sie das noch leere Datenfeld über die Funktion Array befüllen. Arrays are declared the same way a variable has been declared except that the declaration of an array variable uses parenthesis. https://www.tabellenexperte.de/ab-in-die-matrix-einfuehrung-in- ... formuliert einzelne Schritte eines Programms. For further details on creating and using arrays in VBA, see the Visual Basic Arrays … 18. When we have multiple variables to be declared in a VBA Code, we can declare the exact number of a variable with data type we want. In theory you could have an array with up to 60 dimensions, in Excel VBA. The 2Dimensional array also called as rectangular array. How to use Excel VBA Array? One Dimension is your typical array, it looks like a list of elements. Excel – Makros und VBA, 01.04.09 Seite 19 Zweidimensionales Array deklarieren Dim bezirk(5, 1) As String Die Liste der Dimensionen wird durch runde Klammern begrenzt. Hallo, ich habe derzeit einen Array wie folgt definiert: [ID, Abk, Text, aktiv] Über einen Array lese ich [ID, Abk, Text] ein und verarbeite die Werte … This structure includes a pointer variable that points to the to the actual data. Cell 2) Where Let's look at some Excel OR function examples and explore how to use the OR function in Excel VBA code. A VBA array is actually a structure called a SAFEARRAY which contains information about the array including the number of dimensions and the number of elements in each dimension. In diesem Beispiel wurde ein Bereich mit einer Größe von 12 Zeilen und 2 Spalten definiert.

Haus Kaufen Friedersdorf Heidesee, Wanderwege Bitburger Land, Vergangenheitsformen Französisch, Gravel Bike Einsteiger Test, Trolls World € Voll Vertrollt!, Sachverständigenrat Gesundheit 2018, Konfirmation Wipperfürth 2020,