Just found your channel. It's a true gem! Regards from Poland
@samirmurali680810 күн бұрын
One of the best Podcast in the subject of my interest, saw many videos for the same content, but none conveyed the message better than you. Kudos to you Mate
@quinnjohnson13074 жыл бұрын
Great job on this video! You really saved me and helped me understand something that was super confusing!
@Ednut193 жыл бұрын
Excellent video! You’ve simply explained what could have been a complicated topic. Thanks
@SeemaSharma-lj3cf Жыл бұрын
EXTREMELY HELPFULL, thanks for sharing it 👌👍
@ChrisBrogan-l3q3 ай бұрын
Any joy with the follow up for getting back to all data if blank and selecting multiple regions?
@Thor_Underdunk_Caballerial3 жыл бұрын
This is incredibly helpful, Thank You.
@MarjiEmad2 жыл бұрын
It is a great one, but what if I want to filter on 2 or more regions?
@vsrblr3 жыл бұрын
fantastic job, nice demonstration
@setortransporte96242 жыл бұрын
Very, very, very good! Thanks very much, helped me a lot.
@zarkotripunovic75074 жыл бұрын
Great video! I have one question: how can we get whole table if criteria is "" or empty, just like when using advanced filter in spreadsheet?
@KnackTraining4 жыл бұрын
Good question! You'd have to add a little logic to make that happen. Added it to the 'future videos' list.
@zarkotripunovic75074 жыл бұрын
@@KnackTraining I figured it out but not 100% what I was looking for. This is my code: #"Filter1" = Table.SelectRows(#"Filtered Rows", each if BarCodeBoce="Svi" then not Text.StartsWith([BarCode broj],"Svi") else Text.Contains([BarCode broj], BarCodeBoce)) "BarCodeBoce" is my variable, while "Svi" is word that 100% won't be in the name of "BarCode Broj"
@brendasteven9339 Жыл бұрын
I have a question about the named range for Region (starting at 3:55 in the video). What if that list varies? For example, next time you run the report there are now 15 regions instead of 10? Your named regions only goes to row 10. The new 5 regions would not show in the drop down list.
@Hurmali15 ай бұрын
Looks like the slicer function??
@rakshitharamesh31613 жыл бұрын
What if my data source is external and it keeps changing every day so in your case what if the region column gets updated with new data or may be removed. Thanks!
@samanthasalazar92213 жыл бұрын
Let me know if you have this figured out! TIA
@zohaibazam71053 жыл бұрын
Is it possible to show all data if our parameters field is blank. I mean if region Column is blank it must show up all the regions.
@KnackTraining3 жыл бұрын
You'll need to build a logical test into the query - we're on it!
@davidivanov96053 жыл бұрын
Very helpful video, one question though. Is it possible to have more than 1 values as a criteria, for example Northeast and Mid-South together?
@vacilando862 жыл бұрын
Yes,It is. You can create one more than parameters in Power query just like creating "Region" parameter
@baule22064 жыл бұрын
I have the same question, how i can see the whole table if the creteria is empty?
@KnackTraining4 жыл бұрын
Good question - you'd have to add a logical function to translate it. Added to the future video list!
@JenMayB2 жыл бұрын
How do I get it to clear the filter so that all data returns if I want it.
@TheRedTbone10 ай бұрын
Surely it is quicker to read the csv in with power query as in the video, format, then load the whole table, then user a slicer for region? I know the table is large but excel handles millions of rows but its a lot simpler and deals with any new region.
@zzzzzzzzzzzzzzzz93 жыл бұрын
I'm trying to understand the benefits of using parameters. Could you not just dump the data into a piviot or table and use slicers? What's the difference
@KnackTraining3 жыл бұрын
If your data has 10k records, no big deal. However, your dataset might be HUGE - and now you're only pulling what you need. There are a lot of potential performance gains by filtering on the query
@zzzzzzzzzzzzzzzz93 жыл бұрын
@@KnackTraining would you consider between 100k and 400k, and growing, large?
@KnackTraining3 жыл бұрын
Absolutely - Excel CAN deal with that data, but you're going to start experiencing the lag around that point.
@arne.munther2 жыл бұрын
Couldn't this be done with Slicers ?
@tatsuya_tech2 жыл бұрын
Its work. Thanks you so much.. hatur nuhun pisan mang.
@mirrrvelll51643 жыл бұрын
Amazing video, but one thing what I experimented. there on 6:38 where you changed 123ABC data type to text - is not actually neccessary, you can jsut continue use drill down to the value, it will give you text anyways... I already used it couple of times in other examples that I had =) all in all, super amazing thing with PQ, so helpful to automate almost everything.
@AlQur2anAlKareem Жыл бұрын
Thank you So much!!
@valapo80800 Жыл бұрын
Macro via Worksheet_Change?
@davidp32283 жыл бұрын
For those asking how to get the whole table if criteria is "" or empty the below worked for me. L3Filter is my named range. = Table.SelectRows(#"Removed Columns", if L3Filter is null then each true else each ([L3 Name] = L3Filter))
@cabezon667 Жыл бұрын
#"Removed Columns"?
@Luciano_mp3 жыл бұрын
Great...thank you!
@yamenyehia18318 ай бұрын
Thank you for this informations
@khalidmajeed2886 Жыл бұрын
great sir
@Alwahashi-tech Жыл бұрын
جزاك الله خير
@fennecfennec5234 Жыл бұрын
brilliant
@subhamsingh4554 жыл бұрын
Sir, how can i filter clients name in power query with a list of limited clients kept in other table/sheet. For example, if there is 100 clients in power query table, i want only interested 10 particulars clients with their data, then how can i keep filter in power query. Thank you sir....
@KnackTraining3 жыл бұрын
Have two queries in Power Query - one of them the limited client list. Then, use Merge Queries as New, and choose an INNER join. This will keep only the matches. ANTI join would keep the non-matches.