Gracias Alejandra, mas claro imposible. Excelente entrega!!!!
@alejandrahorvath Жыл бұрын
Muchas gracias Alejandro! Saludos 😊
@franciscom.paredesarias2356 Жыл бұрын
Muchas Gracias @Alejandra Horvath siempre algo nuevo que aprender con tus entregas. Saludos desde Chile
@alejandrahorvath Жыл бұрын
Muchas gracias Francisco! Saludos 🤗
@_GB8410 ай бұрын
You're the best! Thank you for helping me solve this problem!
@alejandrahorvath10 ай бұрын
Glad you found it useful Gary! Thanks for watching 😊
@OdelLeal Жыл бұрын
Alejandra, Excellent results.
@alejandrahorvath Жыл бұрын
Thank you Odel! Saludos 😊
@kestaanalytics6 ай бұрын
Thank you. I got the answer I needed. the first 3 minutes of watching your video
@alejandrahorvath6 ай бұрын
Glad it helped! Thanks for watching 😊
@roywilson9580 Жыл бұрын
It is great to see you back posting videos! Thanks for the interesting and useful video. Nice use of table.splitat. I would make a small change to the steps to avoid hardcoding the split point of the tables by inserting few steps adding an index column, filtering down to a known value found in the row to split at and drilling down to the index number: ...... AddIndex = Table.AddIndexColumn( Table001, "Index", 1), DrillDown = Table.SelectRows(AddIndex,each [Column13] = null)[Index]{0}, PrdcDataSet = List.Transform(Table.SplitAt(AddIndex, DrillDown), each let a = Table.RemoveColumns(_, "Index"), b = Table.PromoteHeaders(a), c = Table.SelectRows(b, each [#"Product #"] null), d = Table.UnpivotOtherColumns( c, {"Product #"}, "Year - Qtr", "Amount"), e = Table.SplitColumn(d, "Year - Qtr", Splitter.SplitTextByAnyDelimiter({" - "}),{"Year", "Qtr"}) in e ......... Not overly important on such a small dataset but a for a large dataset it might save a lot of scrolling around.
@alejandrahorvath Жыл бұрын
It's great to be back 😊 Thank you very much for sharing! Very appreciated 🙏 Thanks for watching 😊
@antonysovy5887 Жыл бұрын
as you always say, excellent!!
@alejandrahorvath Жыл бұрын
Thank you Antony! I'm glad you liked it 😊
@tobesoria Жыл бұрын
Excelente mini training💪🤗. gracias Por otro lado, se te extraña mucho con los "live"
@alejandrahorvath Жыл бұрын
😊
@zahoorsarbandi2982 Жыл бұрын
Very interesting and full of knowledge. Thanks
@alejandrahorvath Жыл бұрын
Glad you enjoyed it! Thanks for watching 😊
@eduardomunoz2764 Жыл бұрын
Magistral como siempre, saludos estimada Maestra Ale.
@alejandrahorvath Жыл бұрын
Muchas gracias Eduardo! Un abrazo 😊
@tb9359 Жыл бұрын
Great job! I enjoy your videos and learn a huge amount of tips. Thank you so much!!
@alejandrahorvath Жыл бұрын
I'm so glad! Thanks for watching 😊
@Ratnakumarwrites Жыл бұрын
Great mam... I am learning from you... Love your videos
@alejandrahorvath Жыл бұрын
Glad to hear that. Thanks for watching 😊
@SamehRSameh Жыл бұрын
Excellent 👌👍👍
@alejandrahorvath Жыл бұрын
Thanks for watching 😊
@asheeshpahwa7508 Жыл бұрын
Thanks 😊 Keep bringing these videos . I would request you to please make videos on the excel bi challenges that comes everyday on linkedin Thanks in advance
@alejandrahorvath Жыл бұрын
Thank you for watching and for your request 😊
@etienneleparisien13918 ай бұрын
Hello Alejandra, thanks very much for this very interesting video. Do you have a video explaining how in PowerQuery to split a table in N tables according all the N distinct values in a column ? Thanks very much in advance for your help.
@alejandrahorvath8 ай бұрын
To split a table in N tables according all the N distinct values in a column, you could select the column containing the values you want to split by, right click and select group by, select all rows. The code would be something like this, if the table is in the current workbook: let Source = Excel.CurrentWorkbook(){[Name="TableName"]}[Content], GroupedRows = Table.Group(Source, {"ColumnNameYouWantToSplitBy"}, {{"NewColumnName", each _}}) in GroupedRows
@etienneleparisien13918 ай бұрын
@@alejandrahorvath Thank you so much. I will try it at work. Jo estet és jo vasárnap (in Hungarian).
@alejandrahorvath8 ай бұрын
You're very welcome! Hope that this will solve what you were looking for. Have a great rest good evening and Sunday as well 😊
@etienneleparisien13918 ай бұрын
@@alejandrahorvath Thanks to you. I could do it in VBA and SQL but I think the solution is smarter and faster to realize in PowerQuery. After, I just need to change/replace dynamically the file source in the query formula by VBA.
@boissierepascal5755 Жыл бұрын
Awsome !
@osielg9889 Жыл бұрын
Hola, excelente explicación, una duda consideras que con muchos datos es más eficiente al resultado que tú realizaste únicamente tienes unos cuantos pasos en el editor, si lo hiciera utilizando las opciones normales desde la interfaz de usuario seguro quedarían muchos más. muchas gracias que estés muy bien 😁, te evi un fuerte abrazo 🤗
@alejandrahorvath Жыл бұрын
Hola, todo depende en la fuente de datos, las funciones que utilices y el orden en que apliques los pasos. Menos número de pasos no significa más eficiencia, es lo que realizas y el orden en que lo realizas en cada paso (on en cada función). Gracias por tu comentario. Saludos 😊
@DinoAMAntunes Жыл бұрын
Hi Alejandra. Very good. when to choose between Table Ou Page, i have always this doubt? Tks in advance
@alejandrahorvath Жыл бұрын
Hi Dino, This is a very good question. In my experience the tables have worked better (for the most part); it all depends on the source. You will need to evaluate the source and decide which is better. Thanks for your question 😊