Happy to see English version video. Please keep it up.
@AAAExcel2 жыл бұрын
Thank you 🙏
@sktneer6 ай бұрын
I solved it using the following M Code... let Source = Table.SelectRows(Excel.CurrentWorkbook(), each [Name] = "Data")[Content]{0}, ColNames = Table.ColumnNames(Source), Cols = {"NAME"} & {List.Last(ColNames)}, FinalData = Table.SelectColumns(Source,Cols) in FinalData
@AAAExcel5 ай бұрын
super cool, thank you for sharing your idea's
@sktneer5 ай бұрын
@@AAAExcel Thanks! I'm glad you liked my solution. Your video was a great inspiration!
@mostafaabdelgaid8672 жыл бұрын
ربنا يبارك في عمرك وعملك اني احبك في الله
@AAAExcel2 жыл бұрын
بارك الله فيك يا مصطفى.. احبك الله 🙏🙏
@usmaniqbal18362 жыл бұрын
جزاک اللہ اخی
@AAAExcel2 жыл бұрын
JazakAllah Usman
@usmaniqbal18362 жыл бұрын
@@AAAExcel وایاک
@kishorpanara41912 жыл бұрын
Awesome my dear friend
@AAAExcel2 жыл бұрын
Thank you 🙏
@amaniahmed14742 жыл бұрын
we are really proud of you...keep it up
@AAAExcel2 жыл бұрын
Thank you so much Amani 🙏🙏🙏
@latinamericanboy2 жыл бұрын
Sensational content!!
@AAAExcel2 жыл бұрын
Thank you 🙏
@proswes101713 күн бұрын
let Source = Excel.CurrentWorkbook(){0}[Content], Reqcol = Table.SelectColumns(Source,{"Name",List.Last(Table.ColumnNames(Source))}) in Reqcol
@TheSandipstar Жыл бұрын
sir, need more vedios on English
@AAAExcel Жыл бұрын
Hi, I am posting English videos to another channel, dedicated for English content youtube.com/@aaaexcelenglish
@pascaljoly57529 ай бұрын
let Source = Excel.CurrentWorkbook(){[Name="Table2"]}[Content], #"Changed Type" = Table.TransformColumnTypes(Source,{{"ID", type text}, {"Name", type text}, {"Jan", Int64.Type}, {"Feb", Int64.Type}, {"Mar", Int64.Type}}), Custom1 = Table.ColumnNames(#"Changed Type"), #"Last column" = List.Reverse(Custom1), #"Removed Other Columns" = Table.SelectColumns(Source,{"Name", #"Last column"{0}}) in #"Removed Other Columns"
@pascaljoly57529 ай бұрын
i simply took a list of the column names using the Table.ColumnNames function. then i reversed the list so that the last item on the list ended up in first position in my list (position {0} since Power query starts counting at 0 and not 1). then i selected the columns i needed (i.e. name and March) and, in the step created, I simply replaced "March" by the name of the list I created (I.e. #"Last column) and selected the first item in this list {0}. worked fine. i then added April only and refreshed and it worked and then i added May and june at once and it showed June when i refreshed. thanks for the challenges. it's fun