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

  Рет қаралды 54,346

MyOnlineTrainingHub

MyOnlineTrainingHub

Күн бұрын

Пікірлер: 65
@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! 😊
@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 😉
@kebincui
@kebincui Жыл бұрын
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 Жыл бұрын
That's a great idea! Thanks for sharing 🙏
@darrylmorgan
@darrylmorgan 2 жыл бұрын
Hi Mynda!Another Excellent And Very Helpful Tutorial From Phil...Thank You Both :):)
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Glad you enjoyed it, Darryl!
@10ozGold
@10ozGold 2 жыл бұрын
Brilliant Phil and Mynda!!! So good, super useful. Thank-you so much!
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Glad you enjoyed it!
@chrism9037
@chrism9037 2 жыл бұрын
Excellent, thanks Mynda. PQ can do just about anything!
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
So true, Chris!
@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 😊
@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!
@Hamish_A
@Hamish_A 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.
@IvanCortinas_ES
@IvanCortinas_ES 2 жыл бұрын
Excellent tutorial. Thank you Mynda. That's very complete!
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Glad you like it, Ivan!
@wayneedmondson1065
@wayneedmondson1065 2 жыл бұрын
Great lesson! That function is a mind bender. Thanks for sharing the code. Thumbs up!!
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Cheers, Wayne!
@paulcollins841
@paulcollins841 Жыл бұрын
Very good and very well explained
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks so much 🙏
@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. :)
@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
@saadnageeb4633
@saadnageeb4633 2 жыл бұрын
Wonderful , Thanks very much
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Welcome!
@OmarAl93
@OmarAl93 2 жыл бұрын
Brilliant. Many thanks Mynda and Phil. I was wondering if you could share some material about VBA Macros :) A lot of exciting stuff can be explored there.
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
Cheers, Omar! Thanks for the VBA suggestion.
@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"
@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.
@othmanashara9382
@othmanashara9382 2 жыл бұрын
is there another way more easier?
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
You can try using filter to remove blanks.
@othmanashara9382
@othmanashara9382 2 жыл бұрын
@@MyOnlineTrainingHub yes, i did it with filter and save a lot of time. Thx
@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
@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 2 жыл бұрын
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 2 жыл бұрын
As long as the column has a header, Power Query will bring it in.
@svitovidable
@svitovidable Жыл бұрын
too complicated:(
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
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
@rrrraaaacccc80
@rrrraaaacccc80 2 жыл бұрын
💯👍
@MyOnlineTrainingHub
@MyOnlineTrainingHub 2 жыл бұрын
You're welcome 😊
@새우눈-e3y
@새우눈-e3y 9 ай бұрын
I gave up following the steps. Too complicated to follow.
@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
@Hamish_A
@Hamish_A 2 жыл бұрын
Just copy the steps exactly, or download the file and grab it from there. You can use it without necessarily understanding it.
@RIENZIESILVA-f7u
@RIENZIESILVA-f7u 9 ай бұрын
very confusing explanation .i just need to remove blank rows .
@MyOnlineTrainingHub
@MyOnlineTrainingHub 9 ай бұрын
You can do that using the 'Remove Rows' tool on the Home tab of the Power Query Ribbon.
Power Query Unpivot - fix 4 common data layouts (incl. workbook)
19:24
MyOnlineTrainingHub
Рет қаралды 231 М.
ЛУЧШИЙ ФОКУС + секрет! #shorts
00:12
Роман Magic
Рет қаралды 31 МЛН
小路飞还不知道他把路飞给擦没有了 #路飞#海贼王
00:32
路飞与唐舞桐
Рет қаралды 77 МЛН
Players vs Pitch 🤯
00:26
LE FOOT EN VIDÉO
Рет қаралды 123 МЛН
How to easily automate boring Excel tasks with Power Query!
17:10
MyOnlineTrainingHub
Рет қаралды 1,6 МЛН
Dynamically Remove Empty Columns in Power Query
9:58
Goodly
Рет қаралды 14 М.
DYNAMICALLY Remove All Empty Columns with some M MAGIC in Power BI
9:04
How to Move Data Automatically Between Excel Files
11:37
Kenji Explains
Рет қаралды 187 М.
The Excel Trick I Use EVERY DAY (and you should too!)
11:21
MyOnlineTrainingHub
Рет қаралды 204 М.
Dynamic Power Query Cross Tab Reports - Pivot n Rows to n Columns 2 Ways!
17:08
Easy Power Query Tutorial on Removing Blank Rows
10:29
Computer Tutoring
Рет қаралды 752
Understanding and fixing blank values in Power BI
10:32
Pragmatic Works
Рет қаралды 27 М.
ЛУЧШИЙ ФОКУС + секрет! #shorts
00:12
Роман Magic
Рет қаралды 31 МЛН