M Code - remove all columns where the last row is null for that column

Joyner

Well-known Member
Joined
Nov 15, 2005
Messages
1,202
Hello everyone and thank you for the help.

Is this possible?

I am a doing an append query and if the last row has a null value, I want to remove that particular column that has the null value in the last row, there could be multiple columns with null.

Thank you.
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Wow, that works, thank you

One problem, maybe I did something wrong, but it renamed all of my column heading to Column 1, Column 2, etc..

Any advice to correct that, thanks.
 
Upvote 0
here is an example:

Column1Column2Column3Column4Column2Column4
adimdm
bejnen
cfkofo
glpgp
hrhr

Code:
[SIZE=1]// Table1
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Demoted Headers" = Table.DemoteHeaders(Source),
    #"Transposed Table" = Table.Transpose(#"Demoted Headers"),
    #"Filtered Rows" = Table.SelectRows(#"Transposed Table", each ([Column6] <> null)),
    #"Transposed Table1" = Table.Transpose(#"Filtered Rows"),
    #"Promoted Headers" = Table.PromoteHeaders(#"Transposed Table1", [PromoteAllScalars=true])
in
    #"Promoted Headers"[/SIZE]

as you can see my original headers are Column1, Column2 and so on...
Demote and Promote is to save your original headers
 
Upvote 0
Thank you so much and thank you for the speedy reply. I got it working that is brilliant.

So another question if I can. So after I apply the procedure as you outline, as I want, some columns are deleted and others are then added. Now I have a problem that when I refresh, I get an error that the column names I deleted are not found - they are in my code in a previous step when I reorder columns. Since that code lists the order of all columns by specific reference, including now the ones deleted, if error on the line where the deleted columns are referenced.

Do you happen to have any tricks for that issue (or course I am just using the code as written when I click through the steps, so I am probably using a non-dynamic code).

Thanks again
 
Upvote 0
it was the easiest way to achieve what you wanted in the first post.
manipulating the structure of the data source is a very bad idea, so it's best to plan what the source table should look like so that you don't improve it later.
by changing the source data structure you prevent the correct operation of the previously defined M-code (in most cases)
In this case you change the structure of the source and at the same time you change the structure of Query-table (Transpose, Remove Columns)
the thing you want to achieve now is much more complicated and requires time and all necessary information about the structure, what changes you will do and some more.
it's best to provide a link to a shared excel file with an example of the data source and based on what you want to achieve
 
Last edited:
Upvote 0
Hello Sandy, so I found "MissingField.Ignore". It seems to works, is this a safe and correct workaround?

Thanks
 
Upvote 0
My line for reordering columns is doing some strange things, with each refresh the two columns that are new, and therefore not specifically referenced in my reorder line of code, start on the end where they belong, but keep moving one position to the left with each refresh.

So I think I need to rewrite the line of code.

What I need to do in that step, is reorder the last column ( a created conditional column) to the front. Can I write it like "move column xyz to position one, and avoid listing all of the other columns in the code as it is automatically written?

Hope that is clear - Thanks
 
Upvote 0
MissingField.Ignore, is this a safe and correct workaround?

this is optional parameter in record and table

whole PQ is safe and works well if you know what are you doing :) :) :) :)

edit:

re-read last line in post#6
 
Last edited:
Upvote 0
Thanks, I'll take a look at the post.

So one bit of correction is the column I have to move from the end is put there as the result of a merge query, but I need the column to be the first column position for my output. So I need he last column moved to the first without specific reference to the remaining columns.

I am new to this so maybe my overall understanding of the structure / planning is flawed.

Thanks again
 
Upvote 0

Forum statistics

Threads
1,213,522
Messages
6,114,112
Members
448,549
Latest member
brianhfield

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top