Lambda function was launched few months prior to Lambda helper functions. With Lambda came the ability to perform recursive looping and there was a lot of excitement around this. Yes, after Lambda helper functions came, people rarely talk about recursive Lambdas in Excel. Here are recursive Lambdas which I had created when Lambda function was…
Author: Vijay A. Verma
Important – Content of this Website is 100% Copyright Free
I just want to convey that the content of this site is completely copyright free. You can use the content the way you want without seeking any permission. Whether you are using it commercially or non-commercially, personally or within your organization, it doesn't matter. There is no need to give any acknowledgement either that you…
DOWNLOADS 25 – CTRL+0 to 9 – EXCEL SHORTCUT KEYS TO STAY AHEAD
CTRL + shortcut keys are the easiest and most often used shortcuts. Here are CTRL+ 0 to 9 shortcut keys listed to keep you ahead of the competitions. DOWNLOAD for printing – Excel – CTRL_0_9_Shortcuts Pinup Reference CTRL Shortcut Action CTRL+0 Hide the selected columns CTRL+1 Open the Format Cells dialog CTRL+2 Apply or remove…
Power BI Quiz 1
DOWNLOADS 24 – CTRL+F1 to F12 – EXCEL SHORTCUT KEYS TO STAY AHEAD
CTRL + shortcut keys are the easiest and most often used shortcuts. Here are CTRL+ F1 to F12 shortcut keys listed to keep you ahead of the competitions. DOWNLOAD for printing – Excel – CTRL_F1_F12_Shortcuts Pinup Reference CTRL Shortcut Action CTRL+F1 Displays or hides the ribbon CTRL+F2 Displays the print preview area on the Print…
DOWNLOADS 23 – CTRL+A to Z – EXCEL SHORTCUT KEYS TO STAY AHEAD
CTRL + shortcut keys are the easiest and most often used shortcuts. Here are CTRL+ A to Z shortcut keys listed to keep you ahead of the competitions. DOWNLOAD for printing – Excel – CTRL_A_Z_Shortcuts Pinup Reference CTRL Shortcut Action CTRL+A Select the entire worksheet CTRL+B Apply or remove Bold formatting to font CTRL+C Copy…
Excel Quiz 55
Solution – Running Total – Power Query Challenge 8
Below is a possible solution to the Running Total – Power Query Challenge 8. And code for Function The solution file can be downloaded from PQ_Challenge_8_Solution M
Convert Month Name to Month Number in Power Query – Tips & Tricks 12
In Query M language, there is no function which converts Month Name to Month Number so that if I give February or Feb, the result should be 2. You can use following formula to get the Month Number from Month Name = Date.Month(Date.FromText("1"&[Month Name]) If your data is using some other locale than whatever is…
Excel Trim Formula in Power Query – Tips & Tricks 11
Excel's TRIM function has a unique way to handle trimming unlike other programming languages / applications. It not only trims the leading and trailing blanks (spaces) but also all blanks in between other than single blank between two words. Official Excel documentation for TRIM says – "Removes all spaces from text except for single spaces…