Getting Started with the Power Query Advanced Editor & M CODE for Beginners

  Рет қаралды 6,864

Miss Microsoft

Miss Microsoft

Күн бұрын

Пікірлер: 33
@anillpatel
@anillpatel 5 ай бұрын
Excellent video presentation. Watch this video first to get a good understanding of the way Power Query works and the syntax for M Code. Thanks Melissa.
@MissMicrosoft
@MissMicrosoft 5 ай бұрын
Thank you Anil! Glad it was helpful! 😊
@malchicken
@malchicken Жыл бұрын
Thank you for explaining the possible versions of blue text vs. green text. A video focused on each of those key terms would be much appreciated. Thank you 🙏🏽.
@nuqwestr
@nuqwestr 2 жыл бұрын
I use Udemy but your videos surpass all available there, as most instructors feel the need to inject "overt" personality and extraneous comments in their videos. I've learned more from you in 20-minutes than others I've watched for hours. I sent you a coffee, and will again. Miss Microsoft, you are a star.
@MissMicrosoft
@MissMicrosoft 2 жыл бұрын
Wow thank you so much @nuqwestr! I’m glad the videos are helpful, and thank you so much for the coffee, your support is greatly appreciated!😊
@kailash680
@kailash680 2 жыл бұрын
Very helpful. This information I missed in my Power Query course. Thank you.
@MissMicrosoft
@MissMicrosoft 2 жыл бұрын
So glad it was helpful!
@adaeben
@adaeben Жыл бұрын
Nice. Well done. Very deliberate
@MissMicrosoft
@MissMicrosoft Жыл бұрын
Thank you 😊
@pradeep4645
@pradeep4645 Жыл бұрын
Very useful, thank you.
@MissMicrosoft
@MissMicrosoft Жыл бұрын
You’re most welcome 😊
@heishoi
@heishoi 9 ай бұрын
thank you , this is great video on M Code for beginner 👍👍👍
@MissMicrosoft
@MissMicrosoft 9 ай бұрын
You’re most welcome!
@neerajkaushik2800
@neerajkaushik2800 Жыл бұрын
I appreciate your effort....i will highly recommend everyone to subscribe your channel
@MissMicrosoft
@MissMicrosoft Жыл бұрын
Thank you so much for your support and for recommending my channel, I really appreciate it!
@JJ_TheGreat
@JJ_TheGreat 5 ай бұрын
I ❤ Power Query!!
@MissMicrosoft
@MissMicrosoft 5 ай бұрын
You watched the video! Thank you for watching :)
@dcpowered
@dcpowered 2 жыл бұрын
I am new to Power Query and this video is very helpful! Thanks a lot! Could you please explain how to use code shared by others as copied from their advanced editor?
@MissMicrosoft
@MissMicrosoft 2 жыл бұрын
I'm so glad to hear this video helped you Shakeel! I will definitely make a video on how to copy code shared by others. Please be sure to have your notifications turned on so that you know when that video is released, also I will add the link here as soon as it's up.
@MissMicrosoft
@MissMicrosoft 2 жыл бұрын
Hi Shakeel, I've made the video, please check it out here: kzbin.info/www/bejne/aIKXe5aZZ66ih6c
@heishoi
@heishoi 9 ай бұрын
Thanks
@MissMicrosoft
@MissMicrosoft 9 ай бұрын
Thank you! I highly appreciate the support 😊
@heishoi
@heishoi 9 ай бұрын
@@MissMicrosoft thank you for your efforts in making those videos. They are very beneficial to Excel users
@laarum5323
@laarum5323 Жыл бұрын
how can i save query settings for later use ?
@MissMicrosoft
@MissMicrosoft Жыл бұрын
Hi, please check out this video: kzbin.info/www/bejne/aIKXe5aZZ66ih6c
@saratoffice
@saratoffice 2 жыл бұрын
In power query if a step is wrongly deleted then how can we undo it ?
@MissMicrosoft
@MissMicrosoft 2 жыл бұрын
Hi Sarat Office, there is no undo if you delete a step in the Applied Steps in Power Query. I'd suggest as a workaround making a duplicate of your query and loading it to Excel to save it, then you have a backup of it if you incorrectly delete a step in the original query. Also if you're editing in the Advanced Editor then you can use Ctrl +Z to undo. The other trick you could also use if you wrongly delete a step, is instead of using "Close & Load" where the query will be loaded to Excel, rather click the "X" at the top right corner of your Query Editor to close the editor, it will then ask if you want to keep your changes, click "Discard" and your query will be loaded in Excel before the step was deleted.
@JJ_TheGreat
@JJ_TheGreat 5 ай бұрын
9:38 I find it interesting that to pull a column from a table, you use square brackets “[]” and it returns a list… Whereas, using the same type of brackets (square: “[]”) without indicating the table name actually returns/creates a record (NOT a LIST). To create a list, you have to enter the curly brackets - what I called “braces” - “{}”. This seems counter-intuitive to me!
@MissMicrosoft
@MissMicrosoft 5 ай бұрын
It does seem counter-intuitive, but I will do my best to explain: tables in Power Query are made up of columns and rows. The basic structure of columns are lists and the basic structure of rows are records. So when returning a column from a table, a list will be returned. To return that list (column) we need to tell Power Query that the list is actually a column in a table, and the square brackets are what does this. The curly braces are used for lists that are not in a table because we don't need to go through a table to get to the list. The basic structure of rows are records. The square brackets without indicating a table give you a record, (like the curly braces without indicating a table give you a list). A record is made up of field names on the left, think of these as your column headers, and each field name (column header) has a value on the right, (think of the value as the single row in a table). So when you're accessing rows from a table, you're working with records. The key to understanding when to use the square brackets is that in a table they pull out an entire column as a list (the basic structure) and in a record they pull out specific field values. Examples: Square brackets in a table context: Sales[Revenue] returns the Revenue column as a list from the Sales table. Square brackets in a record context: Customer[Name] returns the value "John" from the Name field in the Customer record.
@thebhaskarjoshi
@thebhaskarjoshi 2 жыл бұрын
Is there any full form of "M Language"?
@MissMicrosoft
@MissMicrosoft 2 жыл бұрын
Hi Bhaskar, not that I know of, Power Query Formula Language is a powerful query language optimized for building queries that mashup data. It's a functional, case sensitive language similar to F#, which can be used with Power Query, hope this helps.
@JJ_TheGreat
@JJ_TheGreat 5 ай бұрын
5:51 And it becomes a text string!
@MissMicrosoft
@MissMicrosoft 5 ай бұрын
Yes exactly!
5 Ways to Use Merge in Power Query & Make Your VLOOKUP Easier Than Ever
10:34
这是自救的好办法 #路飞#海贼王
00:43
路飞与唐舞桐
Рет қаралды 127 МЛН
ЛУЧШИЙ ФОКУС + секрет! #shorts
00:12
Роман Magic
Рет қаралды 31 МЛН
Excel Power Query Tutorial - M Language
56:02
Learn Google Sheets & Excel Spreadsheets
Рет қаралды 20 М.
Power Query Advanced Editor - Pro Tips Made Easy
14:17
MyOnlineTrainingHub
Рет қаралды 177 М.
Power Query made easy - learn the power of Quick Steps | Excel Off The Grid
10:57
Unlock 4 Power Query Secrets Now
17:15
Miss Microsoft
Рет қаралды 10 М.
Power Query Advanced Editor Shortcuts
6:50
Goodly
Рет қаралды 9 М.
Remove Blank Rows/Columns with Power Query Incl. STUBBORN Characters!
14:29
MyOnlineTrainingHub
Рет қаралды 54 М.
这是自救的好办法 #路飞#海贼王
00:43
路飞与唐舞桐
Рет қаралды 127 МЛН