Lets say that I have a table in Power Query where the number of columns is not fixed (it varies depending on the data that I get from database).
The issue is that I want to fill down values later on, for which I have a code like
Table.FillDown(#"Razvrščene vrstice",{"Column2", "Column3", "Column4", "Column5", "Column6", "Column7", "Column8", "Column9", "Column10"})
Of course when I get lets say one column less, the whole thing crashes ('Cannot find column Column10')...
Is there any way around this? For example: 'choose all but the first two columns and fill them down'?
Thanks, Matija