let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
Merge = Table.CombineColumns(Table.TransformColumnTypes(Source, {{"Student 1", type text}, {"Student 2", type text}, {"Student 3", type text}, {"Student 4", type text}, {"Student 5", type text}, {"Student 6", type text}, {"Student 7", type text}, {"Student 8", type text}, {"Student 9", type text}, {"Student 10", type text}}, "en-GB"),{"Student 1", "Student 2", "Student 3", "Student 4", "Student 5", "Student 6", "Student 7", "Student 8", "Student 9", "Student 10"},Combiner.CombineTextByDelimiter("", QuoteStyle.None),"Score"),
Rep = Table.ReplaceValue(Merge," ","",Replacer.ReplaceText,{"Score"}),
Split = Table.ExpandListColumn(Table.TransformColumns(Rep, {{"Score", Splitter.SplitTextByRepeatedLengths(1), let itemType = (type nullable text) meta [Serialized.Text = true] in type {itemType}}}), "Score"),
Type = Table.TransformColumnTypes(Split,{{"Score", Int64.Type}})
in
Type
Bookmarks