05.07.2024, 12:37
Hallo,
anbei eine mögliche Formellösung, z.B. in B2 in einem neuen Blatt ...
Gruß
anbei eine mögliche Formellösung, z.B. in B2 in einem neuen Blatt ...
PHP-Code:
B2=LET(vnSource1; Tabelle2[#Daten];
vnSource2; Tabelle3[#Daten];
vnSource3; Tabelle4[#Daten];
vnSequence; SEQUENZ(ZEILEN(vnSource1) * ZEILEN(vnSource2) * ZEILEN(vnSource3));
fnRows; LAMBDA(Values;Divisor;Type; WAHL(Type; WENN(REST(Values; Divisor) < 1; Divisor; REST(Values; Divisor)); AUFRUNDEN(Values / Divisor; 0)));
vnRows1; fnRows(vnSequence; ZEILEN(vnSource2) * ZEILEN(vnSource3); 2);
vnRows2; fnRows(fnRows(vnSequence; ZEILEN(vnSource3); 2); ZEILEN(vnSource2); 1);
vnRows3; fnRows(vnSequence; ZEILEN(vnSource3); 1);
vnMatrix1; INDEX(vnSource1; vnRows1; SEQUENZ(1; SPALTEN(vnSource1)));
vnMatrix2; INDEX(vnSource2; vnRows2; SEQUENZ(1; SPALTEN(vnSource2)));
vnMatrix3; INDEX(vnSource3; vnRows3; SEQUENZ(1; SPALTEN(vnSource3)));
VSTAPELN(HSTAPELN(Tabelle2[#Kopfzeilen]; Tabelle3[#Kopfzeilen]; Tabelle4[#Kopfzeilen]);
HSTAPELN(vnMatrix1; vnMatrix2; vnMatrix3)))
Gruß
Microsoft Excel Expert · Microsoft Most Valuable Professional (MVP) :: 2011-2019 & 2020-2022 :: 10 Awards
https://de.excel-translator.de/translator :: Online Excel-Formel-Übersetzer :: Funktionen :: Fehlerwerte :: Argumente :: Tabellenbezeichner
https://de.excel-translator.de/translator :: Online Excel-Formel-Übersetzer :: Funktionen :: Fehlerwerte :: Argumente :: Tabellenbezeichner