//Metadata: //Programming language: DAX //Natural language: German //Output: numeric //Explanation: //this measure generates the last date (newest) of a date column in German format //more information: https://dax.guide/format/ //How to use: //Copy the code into PBI when creating a Dax measure Datenstand = "Datenstand: " & FORMAT ( LASTDATE ( 'Tabelle'[Datum] ), "dd/mm/yyyy", "de-DE" )