Remove Blank Rows/Columns with Power Query Incl. STUBBORN Characters!

  Рет қаралды 50,527

MyOnlineTrainingHub

MyOnlineTrainingHub

Күн бұрын

Non-printing characters, spaces and empty strings can make it difficult to remove blank rows and columns. This video shows two approaches ans shows you how to create a custom function you can use to automate the process.
Download the example file here: www.myonlinetraininghub.com/R...
Learn Power Query with Mynda here: www.myonlinetraininghub.com/e...
Follow Mynda on LinkedIn: / myndatreacy
0:00 Introduction
0:25 Example Data
0:41 Removing blank rows & columns using unpivot
2:59 Formula to automatically remove blank rows
7:38 Formula to automatically remove blank columns
12:16 Function to automatically remove blank rows

Пікірлер: 63
@hectorbello2104
@hectorbello2104 2 жыл бұрын
I was dealing with this exact issue a few months ago in one of my assignments at work. It took me ages to remove empty columns, but I never got a clean solution as the one here explained. I will certainly be using this function from now on. thanks for sharing.
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Great to hear you'll be able to make use of it in future, Hector 😊
@w13ken
@w13ken 2 жыл бұрын
Thanks Mynda and Phil, there were some really useful PQ functions that were new to me here so I will keep this video on speed dial. Also really helpful to see how to create a repeatable function. Keep up the awesome work!
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Our pleasure! 😊
@10ozGold
@10ozGold Жыл бұрын
Brilliant Phil and Mynda!!! So good, super useful. Thank-you so much!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Glad you enjoyed it!
@TheOctophant
@TheOctophant 2 жыл бұрын
Oh crap. I needed that Video like three weeks ago. I was struggling so bad with this
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Damn! Better late than never 😉
@IvanCortinas_ES
@IvanCortinas_ES 2 жыл бұрын
Excellent tutorial. Thank you Mynda. That's very complete!
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Glad you like it, Ivan!
@darrylmorgan
@darrylmorgan 2 жыл бұрын
Hi Mynda!Another Excellent And Very Helpful Tutorial From Phil...Thank You Both :):)
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Glad you enjoyed it, Darryl!
@wayneedmondson1065
@wayneedmondson1065 2 жыл бұрын
Great lesson! That function is a mind bender. Thanks for sharing the code. Thumbs up!!
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Cheers, Wayne!
@chrism9037
@chrism9037 2 жыл бұрын
Excellent, thanks Mynda. PQ can do just about anything!
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
So true, Chris!
@iankr
@iankr 2 жыл бұрын
Wow! Many thanks, Mynda & Phil. That's pretty heavy. I will need to have a look at that code more closely (split onto separate rows) to see what's going on! 😀
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Cheers, Ian!
@hamishadamson4628
@hamishadamson4628 2 жыл бұрын
This is fantastic! Just starting my power query journey. It does make me wonder why this isn't a default behaviour/option. It seems like the power query team did half a job regarding this.
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Glad it was helpful, Hamish. Power Query is still being developed, so maybe that functionality will come later.
@kebincui
@kebincui 8 ай бұрын
This is an awesome video, thanks to Phil and Mynda👍🌹. By the way, the step of removing blank row step can be made a little bit shorter by trimming and cleaning first and then removing "" and null. This is reduce the step of just removing "", as below: = Table.SelectRows(#"Changed Type", each not List.IsEmpty(List.RemoveMatchingItems(List.Transform(Record.FieldValues(_), each try Text.Clean(Text.Trim(_)) otherwise _), {"",null})))
@MyOnlineTrainingHub
@MyOnlineTrainingHub 8 ай бұрын
That's a great idea! Thanks for sharing 🙏
@saadnageeb4633
@saadnageeb4633 2 жыл бұрын
Wonderful , Thanks very much
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Welcome!
@paulcollins841
@paulcollins841 Жыл бұрын
Very good and very well explained
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks so much 🙏
@GeertDelmulle
@GeertDelmulle 2 жыл бұрын
Bravo! This is a golden nugget! Good job! :-)
@GeertDelmulle
@GeertDelmulle 2 жыл бұрын
PS: the logic applied reminds me of how we filter in DAX measures.
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Thank you! 😃
@GeertDelmulle
@GeertDelmulle 2 жыл бұрын
@@MyOnlineTrainingHub Hey Mynda & Phil, I've simplified the code a little bit. Do you see the analogy between step 2 and 3? What do you think about it? Here it is: let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], RemoveBlankRows = Table.SelectRows(Source, each not List.IsEmpty(List.RemoveMatchingItems(List.Transform(Record.FieldValues(_), each try Text.Clean(Text.Trim(_)) otherwise _),{"",null}))), RemoveBlankCols = Table.SelectColumns(RemoveBlankRows,List.Select(Table.ColumnNames(RemoveBlankRows), each not List.IsEmpty(List.RemoveMatchingItems(List.Transform(Table.Column(RemoveBlankRows,_), each try Text.Clean(Text.Trim(_)) otherwise _),{"",null})))) in RemoveBlankCols
@genechicago4806
@genechicago4806 2 жыл бұрын
Wow, that's an impressive formula! I started using Power Query a few months ago thanks to your videos, and this is something that I've come across often. Thank you! Question, is there a way to remove duplicate records in Power Query using multiple columns similar to the Remove Duplicates button in Excel? I've come across instances where removing duplicates using only one column doesn't yield the right answer.
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Sure is, Gene. Just select the columns you want considered for duplicates before clicking on the 'remove duplicates' button.
@farmerleigh6361
@farmerleigh6361 Жыл бұрын
Where do I place the fxRemoveBlanks function within the code when I import my data from a different excel file? I have a Source and Navigation step with this code: let Source = Excel.Workbook(File.Contents("B:\Monthly Reports Test Files\Source Data Example.xlsx"), null, true), #"Source Data Example_Sheet" = Source{[Item="Source Data Example",Kind="Sheet"]}[Data] in #"Source Data Example_Sheet"
@JennTheWriter
@JennTheWriter 2 жыл бұрын
This is good and I will have to go through it several times for Excel. One question I have is that, once this is done, and you want to put it into Power BI, will the data transfer as already cleaned, or do you have to do all the cleaning over again? The cleaning part of data is really important and I need to know all of it for both Excel and Power BI, as I see it.
@JennTheWriter
@JennTheWriter 2 жыл бұрын
I don't suppose you have a book written specifically on cleaning data for both programs? LOL!
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
The process is exactly the same in Power BI. Both tools use the same Power Query engine 😉
@JennTheWriter
@JennTheWriter 2 жыл бұрын
@@MyOnlineTrainingHub , thank you for the response. :)
@RonDavidowicz
@RonDavidowicz 2 жыл бұрын
I need a nap now!
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
😁 it's definitely a multi-view tutorial.
@danielnoce75
@danielnoce75 2 жыл бұрын
This is great. I’m curious if it’s possible to do something similar for #NUM! Errors?
@philiptreacy714
@philiptreacy714 2 жыл бұрын
Thanks Daniel. If you have a #NUM error, when you load that to PQ it'll show as Error in the column(s). You can select the column(s) or select the entire table (CTRL+A) then right click on a column header and then on Remove Errors. Alternatively, you can check the Error and see what type it is, then do something accordingly. Please check this post to see what I mean www.myonlinetraininghub.com/iferror-in-power-query-using-try-otherwise
@othmanashara9382
@othmanashara9382 Жыл бұрын
is there another way more easier?
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
You can try using filter to remove blanks.
@othmanashara9382
@othmanashara9382 Жыл бұрын
@@MyOnlineTrainingHub yes, i did it with filter and save a lot of time. Thx
@dp70737
@dp70737 2 жыл бұрын
Why wouldn’t you just select all and transform>clean, transform>trim to the whole thing and then just use the pivot trick?
@philiptreacy714
@philiptreacy714 2 жыл бұрын
Hi Derrick. Trim and Clean result in empty strings so the Unpivot/Pivot trick won't remove those rows/columns containing empty strings
@nimeshkotadia6526
@nimeshkotadia6526 Жыл бұрын
How not to remove blank columns from the table? Instead keep it as it is. I am facing problems while stacking tables because power query removes blank columns from tables on it's own when i want them to be present in the orignal tables which are read into powerquery.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
As long as the column has a header, Power Query will bring it in.
@rrrraaaacccc80
@rrrraaaacccc80 Жыл бұрын
💯👍
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
You're welcome 😊
@martinargimon730
@martinargimon730 2 жыл бұрын
Hi Phil, sorry but your explanation is for advanced users ( i must assume ) since you immediately ( at the start of your video) you talk about "indexing" columns, pivoting etc, etc,.. So it is not really helping us.. I know you are an expert but we are not,. Perhaps a bit more detail explanation will help us better ?.. I've been following Mynda's channel all the time, she is definitively great, but your explanations lack the required 'additional tips' (details) to get thru' these more 'involved' features. Just a constructive criticism,.. Hope you don't mind . Thanks. martin
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Thanks for the feedback, Martin. Unfortunately, every video cannot start with the basics. If you want to learn Power Query then we recommend a structured approach by taking a course (www.myonlinetraininghub.com/excel-power-query-course). Our KZbin channel is a place to share ideas which can be pitched at any level. We understand that not all videos will appeal to all people. That said, perhaps we could have done more to explain the basics and will consider that in future.
@martinargimon730
@martinargimon730 2 жыл бұрын
@@MyOnlineTrainingHub indeed Mynda. I should have checked your other videos before posting my comment. Sorry about this. Thanks again. Kind regards
@hamishadamson4628
@hamishadamson4628 2 жыл бұрын
Just copy the steps exactly, or download the file and grab it from there. You can use it without necessarily understanding it.
@svitovidable
@svitovidable 11 ай бұрын
too complicated:(
@MyOnlineTrainingHub
@MyOnlineTrainingHub 11 ай бұрын
If you get stuck, you're welcome to post your question and sample Excel file on our forum where someone can help you further: www.myonlinetraininghub.com/excel-forum
@user-db1ux4yi6l
@user-db1ux4yi6l 5 ай бұрын
I gave up following the steps. Too complicated to follow.
@user-bp7yu8vk3f
@user-bp7yu8vk3f 5 ай бұрын
very confusing explanation .i just need to remove blank rows .
@MyOnlineTrainingHub
@MyOnlineTrainingHub 5 ай бұрын
You can do that using the 'Remove Rows' tool on the Home tab of the Power Query Ribbon.
@KentLundgrenLarsErik
@KentLundgrenLarsErik Жыл бұрын
Thanks for: = (Source as table) => let #"Removed Blank Rows" = Table.SelectRows(Source, each not List.IsEmpty(List.RemoveMatchingItems(List.Transform(List.RemoveMatchingItems(Record.FieldValues(_), {"", null}), each try Text.Clean(Text.Trim(_)) otherwise _ ) , {""}))), #"Removed Blank Cols" = Table.SelectColumns(#"Removed Blank Rows" , List.Select(Table.ColumnNames(#"Removed Blank Rows"), each List.NonNullCount(List.Transform(Table.Column( #"Removed Blank Rows", _) , each try if Text.Clean(Text.Trim(_)) = "" then null else _ otherwise _ ) ) > 0 )) in #"Removed Blank Cols" I would never have fixed that myself!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Glad it was helpful 😊
Power Query Unpivot - fix 4 common data layouts (incl. workbook)
19:24
MyOnlineTrainingHub
Рет қаралды 222 М.
Tom & Jerry !! 😂😂
00:59
Tibo InShape
Рет қаралды 67 МЛН
Survival skills: A great idea with duct tape #survival #lifehacks #camping
00:27
DYNAMICALLY Remove All Empty Columns with some M MAGIC in Power BI
9:04
10 Excel Formulas That Will Set You Apart (Cheat Sheet)
18:04
MyOnlineTrainingHub
Рет қаралды 209 М.
6 Excel Tools Most Users Never Think to Use (Files Included)
12:34
MyOnlineTrainingHub
Рет қаралды 109 М.
Excel FILTER Function TRICK for Non Adjacent Columns
12:03
Leila Gharani
Рет қаралды 320 М.
12 Pro PivotTable Formatting Tricks = No more UGLY PivotTables!
12:12
MyOnlineTrainingHub
Рет қаралды 323 М.
Unstack a Million Uneven Rows to Columns in Power Query
10:50
How to easily automate boring Excel tasks with Power Query!
17:10
MyOnlineTrainingHub
Рет қаралды 1,5 МЛН
High-Income Excel Skills Worth Learning in 2024 (Free File)
29:19
MyOnlineTrainingHub
Рет қаралды 328 М.
Klavye İle Trafik Işığını Yönetmek #shorts
0:18
Osman Kabadayı
Рет қаралды 160 М.
КРУТОЙ ТЕЛЕФОН
0:16
KINO KAIF
Рет қаралды 3,3 МЛН
⚡️Супер БЫСТРАЯ Зарядка | Проверка
1:00