New Way to Sum Monthly Data into Quarters

  Рет қаралды 46,234

MyOnlineTrainingHub

MyOnlineTrainingHub

Күн бұрын

Пікірлер: 166
@armstrongro
@armstrongro Жыл бұрын
Love your videos. Very easy to understand. I have been doing Excel Development since 1993 and this is how I would have done it before the introduction of the new functions. =SUM(OFFSET($C$3:$N$7,MATCH($B13,$B$3:$B$11,0)-1,0,1,12)*(ROUNDUP(MONTH($C$2:$N$2)/3,0)=COLUMNS($C$12:C$12))) by doing COLUMNS($C$12:C$12) you don't have to worry about the one person in a hundred (probably less) that likes to insert columns where ever they like. with COLUMN(A:A) if someone inserts a column at column A everything gets wrecked. This way also gives the flexibility if the order of the items needs to be different in the quarterly summary.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks so much for sharing 🙏😊
@petercompton538
@petercompton538 Жыл бұрын
I haven't come across Sergei before but I just bow down in awe every time I see anything from Peter Bartholomew - really quite astonishing! And thank you Mynda for the very coherent explanation. I know that I will have to spend a bit of time getting my head round that one.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Glad you enjoyed the video, Peter 🙏😊 have fun deciphering the files.
@ricos1497
@ricos1497 Жыл бұрын
Really interesting Mynda, thanks. When it gets to the single cell formula, I try to focus solely on reusability, and so I would have split this into two "reusable" lambdas. First would be a function called QUARTERS(dates,returnType), which would be a function that either returns quarter (QQ) or quarter and year (QQ-YY). Second is a GROUPBY(array, columnToSum,includeTotals), which would take the array of quarter numbers from the QUARTERS() function and sum the values and include totals if requested. Obviously this would have to be used in BYROW() to get the result for each item. Alternatively a better method might be to create an UNPIVOT() function to mirror PQ, which unravelled the table into Date, Item, Value before applying the above quarter and group functions. This approach would leave you with three fairly reusable, and regularly so, functions that you could port across to other workbooks as required. You could obviously go further with group by, to include options for summing, average etc, and using hstack to group by multiple columns, perhaps with subtotals and such, but that'd keep you going for about ten videos!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Great ideas and in fact if you were to look at Peter's actual file you'll see he stores the lambdas in the name manager which vastly simplifies the formulas, but for the purpose of teaching, I moved it all into one formula so I could step through it together. I like the idea of an UNPIVOT lambda that could be reused 👍
@ricos1497
@ricos1497 Жыл бұрын
@@MyOnlineTrainingHub I think the following should work as an UNPIVOT function: =LAMBDA(data,includesRowTotals,includesColTotals, LET( d,data, r,ROWS(data)-includesRowTotals, c,COLUMNS(data)-includesColTotals, seqD,SEQUENCE((r-1)*(c-1)), indC,MOD(seqD-1,c-1)+2, indR,ROUNDUP(seqD/(c-1),0)+1, colVector,INDEX(data,1,indC), rowVector,INDEX(data,indR,1), valuesVector,INDEX(data,indR,indC), return,HSTACK(colVector,rowVector,valuesVector), return) )(B4:N9,,) where data is your table, and "includesRow/ColumnTotals" will just ignore the respective column or row if there is one (0 for none, 1 for total col/row). I'm sure there is a better way. Getting into it just now, I should have created a "REPEATVECTOR" function to create the respective vectors! That's the wonder of LAMBDA I guess.
@ricos1497
@ricos1497 Жыл бұрын
Yes, there was a lot more simple function! UNPIVOT: =LAMBDA(data,includesRowTotals,includesColTotals, LET( d,data, r,ROWS(data)-1-includesRowTotals, c,COLUMNS(data)-1-includesColTotals, return,MAKEARRAY(r*c,3, LAMBDA(i,j,INDEX(d,IF(j=1,1,ROUNDUP(i/c,0)+1),IF(j=2,1,MOD(i-1,c)+2)))), return) )(B4:N9,,) I forgot about MAKEARRAY, which saves on a sequence, and I also forgot that INDEX is very clever, and can take IF statements within its parameters and output an array of vectors.
@anv.4614
@anv.4614 Жыл бұрын
Dear Mynda, so much information for seemingly quite easy calculation. amazing. clearly explained. Thank you.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks so much!
@yvlove77
@yvlove77 Жыл бұрын
Thank you Mynda, Peter, and Sergei! I am obsessed with these new formulas and also spend hours trying to figure them out and make them work; it makes me question my knowledge and abilities too!! I can't wait to dig into the formulas provided to see what else I can learn and use! Thank you so much for sharing and inspiring! Mynda, my love for and knowledge of Excel grew into what it is today because I watched a video you made on dashboards about 8 years. My "excel" feet have never stopped running since! Thank you!!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Aw, your kind words are what keeps me going. Thank you so much. I'm grateful that I can share these videos with you 🥰🙏
@sankaliamayur
@sankaliamayur Жыл бұрын
It is like a magic. I need to work a lot to understand each function individually. But the explanation given at the bottom of video was very helpful to visualize how function works. Thanks a lot for such an informative tutorial.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
So pleased you enjoyed it 🙏😊
@Michael_Alaska
@Michael_Alaska Жыл бұрын
That was a lot to digest, but enjoyable to watch and follow along. For a moment I thought did I click on a Diarmuid Early video? Hats off to Peter, Sergei, and yourself. Thanks
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
😁 thanks for watching, Michael! Glad you enjoyed it.
@A8OC
@A8OC Жыл бұрын
Mynda, once again you have demonstrated something which I can use in my real-world reporting scenarios. Thank you. Clear and concise as always.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Awesome to hear 🙏
@chiquita683
@chiquita683 Жыл бұрын
A ton of new formulas I didn't know about in this one. Kudos to all, very clear explanation!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Great to hear! 🙏😊
@vijayarjunwadkar
@vijayarjunwadkar Жыл бұрын
That's mind blowing, Mynda! Thanks to all of you, for sharing this rich knowledge with us. There are so many tricks in this one video, which will open up wide possibilities and applications, and that is really great! 🙂
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks for watching, Vijay! Glad you enjoyed it. 🤯😁
@mohammedelsakally540
@mohammedelsakally540 3 ай бұрын
Thank you Mynda for your always valuable videos which are containing the new ideas to solve the problems we are facing all time when we are dealing with excel 🙏
@MyOnlineTrainingHub
@MyOnlineTrainingHub 3 ай бұрын
Thanks for watching!
@XLarium
@XLarium Жыл бұрын
Peter is showing his amazing LAMBDA skills almost every day in the Techcommunity.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
He's super helpful!
@Friday_456
@Friday_456 Жыл бұрын
​@@MyOnlineTrainingHub😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊
@ZAKISaidAliMaurice
@ZAKISaidAliMaurice Жыл бұрын
I found the demonstration very effective. Thank you very much for sharing your know-how. i'm trying to adapt the same thing to calculate subtotals using BYCOL, but after 3 days i haven't managed to do it, so i'm writing this commentary in the hope that you'll be able to make a video along these lines.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Glad it was helpful! Please post your question and sample Excel file on our forum where someone can help you further: www.myonlinetraininghub.com/excel-forum
@juanbon5996
@juanbon5996 Жыл бұрын
Hi Mynda, greetings from Miami, Florida. My hat off to Peter and Sergei. I am, however, inclined to use Power Query and Pivot Tables, as I am a lot more confident in using thanks, to a great extent, to your videos.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks so much for watching! I too prefer PQ and PivotTables 😉
@Quidisi
@Quidisi Жыл бұрын
HOLY COW!!! That was amazing!!! Thank you so much for the time you, and the others spent figuring this out - and especially for explaining it so thoroughly in your video. Amazing stuff!!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks for watching! So glad you liked it 😊
@yourcfoguy
@yourcfoguy Жыл бұрын
Nicely done here Mynda, real easy to follow and informative!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks so much, Josh!
@RafaelSilva-pj6og
@RafaelSilva-pj6og Жыл бұрын
Those guys are amazing. I've personally received help from Peter Bartholomew in the recent past and I can attest that his knowledge of excel formulas exceeds mine in orders of magnitude!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Mine too, Rafael! 😊 Thanks for watching.
@adamgranato6541
@adamgranato6541 Ай бұрын
Thankyou so much. This really simply explained what i had been struggling with for a couple of hours. I have one question though, how do you have this work over a data set of multiple years. I am finding it summing all Q1, Q2, Q3, Q4 for all years. Is there a way to specify discreet years?
@MyOnlineTrainingHub
@MyOnlineTrainingHub Ай бұрын
Please post your question and sample Excel file on our forum where someone can help you further: www.myonlinetraininghub.com/excel-forum
@yokoyama7590
@yokoyama7590 Жыл бұрын
Great content and great explanations! Thank you Mynda and the team!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
🙏😊Glad you enjoyed it!
@chrism9037
@chrism9037 Жыл бұрын
Very clever and helpful, thanks Mynda! So awesome
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Cheers, Chris! 🙏😊
@pc-doctor1416
@pc-doctor1416 Жыл бұрын
Makes my head spin. Amazing what can be done,
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
I know, right?! 😁
@Acheiropoietos
@Acheiropoietos Жыл бұрын
Nicely done, Mynda. Nicely done. 😎
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thank you!! 😁 🙏
@brianvaddan9987
@brianvaddan9987 Жыл бұрын
Thank Mynda for the brilliant explanation. Have you ever tried to combine the scan and Byrow function to get an accumulator for each row like a running total. I’ve tried but without success. I’m trying to get the scan function to work across the array but on a row by row basis, once again without having to drag down….. that’s so 90’s after all 😂
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks for watching, Brian! I haven't used these new functions much, yet. The running total sounds like a great case for these functions. I'll keep it in mind for future videos.
@ankursharma6157
@ankursharma6157 Жыл бұрын
Loved It! Loved It!! Loved It!!! THANK YOU!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks so much! 😁🙏
@thestitchmenagerie
@thestitchmenagerie Жыл бұрын
I am still so confused and lost on these new formulas. I keep trying to see how I can add them to my reports, but I just can't. :( I have watched all of your power query videos and am in love with it!) Thanks for all the great videos and great, straight-forward explanations!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
I say go with what's best for you. If it were me, I'd use Power Query and PivotTables to do this too 😉
@tenamsb686
@tenamsb686 Жыл бұрын
Good evening, ma'am First of all, thank you for all of these amazing tutorials - they help me a lot. Actually I had a doubt which I failed to resolve by myself. I was wondering if it's possible to import multiple CSVs from a folder as different queries to power query at once without actually combining them? Thank you, any help will be highly appreciated.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Glad you find my videos helpful! No, you can't import multiple files from a folder as separate queries.
@tenamsb686
@tenamsb686 Жыл бұрын
@@MyOnlineTrainingHub Thank you very much for the reply ma'am! I was able to stumble upon a solution for the same. I was trying anything that I could imagine out of anxiety to get my work done and I realised that we can attach a folder to ODBC and use use ODBC to load multiple CSVs from that folder as different queries into the power query. Funny enough, it's such a simple solution to such a big problem but it's no where to be found on the internet.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Interesting! Thanks for sharing 👍
@t2p5g4
@t2p5g4 Жыл бұрын
Thank you! My head is still hurting, though.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
😁 mine too!
@joeswright86
@joeswright86 Жыл бұрын
Great example of the newer functions. I’ve always used sumifs with two rows in the header dictating the start and end of the sum. Are the one formula methods faster? They look easier to audit.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks, Joe! I haven't speed tested them, but they're not likely to be processed over huge tables, so I wouldn't have thought it would be noticeable.
@msoffice6037
@msoffice6037 Жыл бұрын
Thank you very much for the great content!!!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Glad you enjoy it!
@steven.h0629
@steven.h0629 Жыл бұрын
❤Thanks formula Kings, and Queen 👍😎✊
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Cheers, Steven 🙏😊glad you enjoyed it.
@Franky2307
@Franky2307 Жыл бұрын
Thank you for the great video. I need the learn a lot more here. Could you suggest a simple formula to insert to your above formula select rows (which have dates), columns with values . The sum will sort dates from Jan-March into Q1, April-June into Q2 etc. Dont shoot me. I am a beginner. ps. I already use SUMIF to collate the dates. How to fit SUMIF into yours formula.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Glad you liked it 🙏 Please post your question and sample Excel file on our forum where someone can help you further: www.myonlinetraininghub.com/excel-forum
@goutamnayak5011
@goutamnayak5011 Жыл бұрын
Thank you so much mam Mam i want make career in Data analyst So is it better to learn ms Excel deeply all functions Not depend on copilot and other ai tools
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Yes, absolutely learn the functions relevant to being a data analyst and don't rely on AI.
@Miro_L
@Miro_L Жыл бұрын
You guys are from different planet, no idea what is going on… 😂😂😂😂😂 it sure looks amazing
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks for watching 😁
@joewilson4599
@joewilson4599 Жыл бұрын
Nice video. Can I ask how you are able to "step into" the part written formula at 2:08 to show the 1,1,1,2,2,2..etc
@lbhibbert
@lbhibbert Жыл бұрын
I believe that since May 2023, Excel365 does this when you highlight the portion of the formula you wish to evaluate.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks, Joe! I use the F9 key to evaluate parts of the formula in the formula bar.
@dmitrystrukov1682
@dmitrystrukov1682 Жыл бұрын
The good old Sumproduct (wrapped into makearray) worked for me =LET(monthstarts, SEQUENCE(1,4,0,3), monthends, SEQUENCE(1,4,2,3), source,B8:I12, MAKEARRAY(ROWS(source),COUNT(monthstarts),LAMBDA(a,b,SUMPRODUCT(source*(SEQUENCE(ROWS(source))=a)*((SEQUENCE(1,COLUMNS(source),0,1)=INDEX(monthstarts,1,b)))))))
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Nice. Sergei had a couple of MAKEARRAY solutions too.
@Zvertnie
@Zvertnie Жыл бұрын
Delightful! 👏👏👏
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Glad you think so! 🙏
@weekendeutopia
@weekendeutopia 3 ай бұрын
Hello @MyOnlineTrainingHub how about summarizing quarterly data to years? Thank you in advance!
@MyOnlineTrainingHub
@MyOnlineTrainingHub 3 ай бұрын
Please post your question and sample Excel file on our forum where someone can help you further: www.myonlinetraininghub.com/excel-forum
@rafiullah-zz1lf
@rafiullah-zz1lf Жыл бұрын
Thanks to peter and sergei..even when we know we cant grasp the concept any way😂
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
😁Thanks for watching!
@ec185
@ec185 Жыл бұрын
I love your videos. I really do. However, this time its a huge overkill. Add a simple calculation on the side for 3 months, copy and paste. No complicated array formulas and easily understood for next quarter’s review
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
I guess if you're happy to do the work each quarter, then you do whatever suits. 😊 If you prefer a one and done formula, then these are options to consider. Or...just use Power Query and PivotTables, which is my preference: kzbin.info/www/bejne/gImkq2RvpdSJm80
@IamTheReaper911
@IamTheReaper911 Жыл бұрын
Love em ❤
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
🥰🙏
@jamesnaftalin6103
@jamesnaftalin6103 Жыл бұрын
Had you thought of doing it like this? LET( quantity,$C5:$N9, mths,$C$4:$N$4, qtrs,ROUNDUP(MONTH(mths)/3,0), MMULT(quantity,TRANSPOSE(N(qtrs=SEQUENCE(4)))))
@jamesnaftalin6103
@jamesnaftalin6103 Жыл бұрын
or even =LET( quantity,$C5:$N9, mths,$C$4:$N$4, qtrs,ROUNDUP(MONTH(mths)/3,0), MMULT(quantity,TRANSPOSE(N(qtrs=SEQUENCE(5))+N(SEQUENCE(5)=5))))
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Nice, James! You are now the 3rd amazing formula writer I know 😁
@SamHawkins261
@SamHawkins261 Жыл бұрын
Like this solution a lot. Might also switch "MONTH(mths)" to "MATCH(mths,mths,0)" in case the financial year isn't January to December.
@RussellAngus-g2b
@RussellAngus-g2b Жыл бұрын
Can this also cope with those of us whose quarters do not fit into a calendar year - e.g. fiscal year Apr - Mar?
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Yes, but you'd have to use a different formula to map the months to their respective quarters.
@catherinechen2010
@catherinechen2010 Жыл бұрын
AMMMMMAZING!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
So glad you liked it, Catherine! 🙏😊 Peter and Sergei are exceptional.
@WynstonaJackreece
@WynstonaJackreece Жыл бұрын
Is there any way to track the rows that have been removed from a table because of a duplicate id (while other columns in the row do not have duplicated data)? Thank you in advance!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Once data is removed in Excel you can use the Track Changes tool if you have M365 to see how cells have been changed: kzbin.info/www/bejne/jpfKdZmLertjnK8
@Erni760803
@Erni760803 Жыл бұрын
Awesome
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks for watching!
@GeoEmperar
@GeoEmperar Жыл бұрын
Did you say Peter and Sergei sent you 8 formulas, yet am struggling to WRAPMYHEAD onto only one? But in your hands, we are gratefully covered! Thanks Mynda!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
In the end it was more than 8 🤯too much fun for one person!😁
@mogarrett3045
@mogarrett3045 Жыл бұрын
well done thank you Mynda. You're having too much fun too. Love it
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
😁 thank you!
@goutamnayak5011
@goutamnayak5011 Жыл бұрын
Mam please ans me Copilot 365 will available in soon Ms Excel Should I learn ms Excel all functions and advance ms Excel or I can do my all work by copilot 365 i am confused Please ans me
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Great question. Copilot will certainly help with standard formulas, and possibly more complex ones, but it will only be available with Enterprise licenses, so you'd want to hope that you only ever work for a company that is paying for the top tier license fees. Of course, it will always be quicker to write your own formulas if you know how. I know if I were looking for an employee to hire, I'm going to choose one who doesn't need to solely rely on AI to do their job.
@ahshew
@ahshew Ай бұрын
I found that the column number isnt supported by excel fot web
@panksimus
@panksimus Жыл бұрын
I would've used this "=SUM(OFFSET($C5:$E5,0,3*COUNTA($C$12:C$12)-3))" in cell C13 and dragged down and across.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks for sharing!
@AbdulRahman-em7pc
@AbdulRahman-em7pc Жыл бұрын
Wow😮
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
😊🙏
@nadermounir8228
@nadermounir8228 Жыл бұрын
Brilliant video 📹 👏 Thank u for sharing this challenging formula with us.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
My pleasure!
@wilmarkjohnatty4924
@wilmarkjohnatty4924 11 ай бұрын
Seems very unintuitive to put this data horizontally. We tend to put the dimension that we are going to Add more data to in the rows - that is new quarters /months.
@MyOnlineTrainingHub
@MyOnlineTrainingHub 11 ай бұрын
Not as an accountant. Accountants have their chart of accounts in the rows and time across the columns. But there are equivalent solutions if you have your data transposed in the file you can download from the link in the video description.
@YvesAustin
@YvesAustin Жыл бұрын
7:28😂
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Glad I gave you a giggle, Yves 😁
@excelling6955
@excelling6955 Жыл бұрын
one way can be =LET(a,C5:N9, sa,BYROW(CHOOSECOLS(a,{1,2,3}),LAMBDA(s,SUM(s))), sb,BYROW(CHOOSECOLS(a,{4,5,6}),LAMBDA(s,SUM(s))), sc,BYROW(CHOOSECOLS(a,{7,8,9}),LAMBDA(s,SUM(s))), sd,BYROW(CHOOSECOLS(a,{10,11,12}),LAMBDA(s,SUM(s))), HSTACK(sa,sb,sc,sd))
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Nice alternative! Thanks for sharing 😊
@elisabethd9325
@elisabethd9325 Жыл бұрын
This will be interesting to digest. How could I have flexibility to have a fiscal quarter/year. e.g., fiscal year is Oct - Sep and therefore Q1 would be Oct - Dec?
@ricos1497
@ricos1497 Жыл бұрын
I'm not at my PC just now unfortunately. However, you could use the MOD() function to determine the fiscal month number and then the same ROUNDUP() function as the video from there to get the quarter. Something like: =ROUNDUP((MOD(yourDateRange+3,12)+1)/3,0) I might have the +1 wrong, but if you play about with the two functions on their own, you'll get it.
@Lost_in_southern_california
@Lost_in_southern_california Жыл бұрын
Fancy.
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thanks for watching!
@drsteele4749
@drsteele4749 Жыл бұрын
Mynda, don't bang your head - you could brain your damage!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
😁
@robparker1625
@robparker1625 Жыл бұрын
=LET(MINDBLOWN) !
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
😁I know, right! Peter and Sergei's formulas are next level.
@grahamparker7729
@grahamparker7729 Жыл бұрын
Wowza, that was some formula….
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Sure was, Graham! 😁 Thanks for watching.
@mathijs9365
@mathijs9365 Жыл бұрын
The hard way...
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Fair enough 😉
@cz287cj
@cz287cj Жыл бұрын
cannnot use pivot table?
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Did you watch to the end? I say that at the end, but the limitation with this data is it's not in a tabular format, so we have to unpivot it first with Power Query. Here's the video link: kzbin.info/www/bejne/gImkq2RvpdSJm80
@cz287cj
@cz287cj Жыл бұрын
​@@MyOnlineTrainingHub i take it there is no record of original raw data.
@goutamnayak5011
@goutamnayak5011 Жыл бұрын
Please mam ans me my last comment
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
I did.
@patrickkinbonso1809
@patrickkinbonso1809 Жыл бұрын
I would be surprised if I manage to follow the formulas,.yes hurting my head
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
😁 I don't blame you, Patrick!
@apollosht
@apollosht Жыл бұрын
Why not just do a sum offset or add some helper rows and use sumifs. Even someone who is an expert at excel would take ages to figure out how to audit this formula and understand its mechanics without watching a 12 min video
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
If you look at Peter's file, you'll see he has simplified them into custom LAMBDA functions that are easy to use, even for beginners. If it's an auditor issue, then they will eventually have to get their skills up to speed, because these functions aren't going away.
@rounakvarma3399
@rounakvarma3399 4 ай бұрын
Doesnt work man tried like a 100 times
@MyOnlineTrainingHub
@MyOnlineTrainingHub 4 ай бұрын
Perhaps you don't have these functions in your version of Excel.
@rounakvarma3399
@rounakvarma3399 4 ай бұрын
​@@MyOnlineTrainingHub perhaps.
@the_afterthot
@the_afterthot Жыл бұрын
that was fab! love your vids! and your defintion of fun!
@MyOnlineTrainingHub
@MyOnlineTrainingHub Жыл бұрын
Thank you so much!! 😁
@jawadhassan4917
@jawadhassan4917 10 ай бұрын
@MyOnlineTrainingHub
@MyOnlineTrainingHub 10 ай бұрын
😁
Why Pro Excel Users Love SUMPRODUCT!
8:08
MyOnlineTrainingHub
Рет қаралды 61 М.
Using XLOOKUP with other Excel Functions - INDEX, SUMIF and SUM
13:47
Каха и лужа  #непосредственнокаха
00:15
Ice Cream or Surprise Trip Around the World?
00:31
Hungry FAM
Рет қаралды 7 МЛН
Perfect Pitch Challenge? Easy! 🎤😎| Free Fire Official
00:13
Garena Free Fire Global
Рет қаралды 75 МЛН
БУ, ИСПУГАЛСЯ?? #shorts
00:22
Паша Осадчий
Рет қаралды 1,6 МЛН
Make Excel Formulas Dynamic with the This Trick
10:54
Kenji Explains
Рет қаралды 181 М.
The Excel Trick I Use EVERY DAY (and you should too!)
11:21
MyOnlineTrainingHub
Рет қаралды 202 М.
10 Excel Formulas That Will Set You Apart (+Cheat Sheet)
18:04
MyOnlineTrainingHub
Рет қаралды 316 М.
Most Excel Users Don't Know Excel Logic!
16:15
MyOnlineTrainingHub
Рет қаралды 44 М.
Introducing Python in Excel
19:01
Leila Gharani
Рет қаралды 1,6 МЛН
NEW Python in Excel - PYTHON + EXCEL + ChatGPT = Easy!
10:32
MyOnlineTrainingHub
Рет қаралды 216 М.
Каха и лужа  #непосредственнокаха
00:15