THANK YOU VERY MUCH AND REALLY GRATEFULL.Obviously, we have no access to C:\Users\27833\Downloads\Donaldson PDf\ so we can't add to the queries and refresh them, so I've taken your existing results table and processed that. See the query Donaldson_PDfNew which uses the fnMergeRows function.
In a part of the function I've used the ¬ character to delimit the merged values because I wasn't sure whether you'd like no delimiter, a space delimiter, or something else. This way you can see where the delimiter has been used and you can go into the function to replace it with what you like.
#"Added Custom" = Table.AddColumn(Source, "Custom", each Text.Combine(Source[Part Description],"¬")), can become
#"Added Custom" = Table.AddColumn(Source, "Custom", each Text.Combine(Source[Part Description]," ")),
or with no delimiter:
#"Added Custom" = Table.AddColumn(Source, "Custom", each Text.Combine(Source[Part Description])),
You should probably be able to use fnMergeRows directly in your own query.
HiObviously, we have no access to C:\Users\27833\Downloads\Donaldson PDf\ so we can't add to the queries and refresh them, so I've taken your existing results table and processed that. See the query Donaldson_PDfNew which uses the fnMergeRows function.
In a part of the function I've used the ¬ character to delimit the merged values because I wasn't sure whether you'd like no delimiter, a space delimiter, or something else. This way you can see where the delimiter has been used and you can go into the function to replace it with what you like.
#"Added Custom" = Table.AddColumn(Source, "Custom", each Text.Combine(Source[Part Description],"¬")), can become
#"Added Custom" = Table.AddColumn(Source, "Custom", each Text.Combine(Source[Part Description]," ")),
or with no delimiter:
#"Added Custom" = Table.AddColumn(Source, "Custom", each Text.Combine(Source[Part Description])),
You should probably be able to use fnMergeRows directly in your own query.