Forum Discussion

stever78's avatar
stever78
Brass Contributor
Jul 11, 2022
Solved

APPEND query - can we still get it to work even if one of the queries in the append has not loaded ?

  Hi all, would really appreciate your help.   I Have an APPEND power query , that appends 16 other power queries.   On occasion one or two of the "other" queries (that the append uses) do not l...
  • SergeiBaklan's avatar
    SergeiBaklan
    Jul 13, 2022

    stever78 

    As workaround we may add dummy table, easiest way from here

    and modify the script as

    let
        tablesToCombine = {dummy, Table1, Table2, Table3, Table4},
        toTable = Table.FromList(tablesToCombine, Splitter.SplitByNothing() ),
        noErrors = Table.RemoveRowsWithErrors(toTable, {"Column1"}),
        #"Removed Top Rows" = Table.Skip(noErrors,1),
        Source = Table.Combine(#"Removed Top Rows"[Column1])
    in
        Source

    Perhaps there is more elegant solution, will try to play with is some later. Test file is attached.

Resources