rhockmanBrass ContributorMay 12, 2023SolvedPower Query Is there a way to extract these dates from one cell and add new rows for each date, easily in power query or another method? Show MoreLorenzoMay 12, 2023rhockman another 365=LET( clean, SUBSTITUTE(SUBSTITUTE(Table1[Date],"*","")," ",""), concat, LAMBDA(n,d, n & "," & SUBSTITUTE(d,",",";" & n & ",")), VSTACK( Table1[#Headers], TEXTSPLIT(TEXTJOIN(";",,MAP(Table1[Name],clean,concat)),",",";") ) )
LorenzoMay 12, 2023rhockman another 365=LET( clean, SUBSTITUTE(SUBSTITUTE(Table1[Date],"*","")," ",""), concat, LAMBDA(n,d, n & "," & SUBSTITUTE(d,",",";" & n & ",")), VSTACK( Table1[#Headers], TEXTSPLIT(TEXTJOIN(";",,MAP(Table1[Name],clean,concat)),",",";") ) )
LorenzoMay 12, 2023rhockman another 365=LET( clean, SUBSTITUTE(SUBSTITUTE(Table1[Date],"*","")," ",""), concat, LAMBDA(n,d, n & "," & SUBSTITUTE(d,",",";" & n & ",")), VSTACK( Table1[#Headers], TEXTSPLIT(TEXTJOIN(";",,MAP(Table1[Name],clean,concat)),",",";") ) )
LorenzoSilver Contributor to rhockmanMay 13, 2023rhockman . You're welcome. Whatever option you chose, there's a link at the bottom to Mark as solution => this Helps people who Search - Thanks