Comments for My Spreadsheet Lab https://myspreadsheetlab.com The site is about Microsoft Excel. Fri, 27 Feb 2026 21:02:42 +0000 hourly 1 https://wordpress.org/?v=6.9.4 Comment on Unlock the power of regex in Excel by Kevin Lehrbass https://myspreadsheetlab.com/unlock-the-power-of-regex-in-excel/#comment-38921 Fri, 27 Feb 2026 21:02:42 +0000 https://myspreadsheetlab.com/?p=6210#comment-38921 In reply to Rick Rothstein.

Thank Rick, good idea to combine all three into a single pattern.

]]>
Comment on Unlock the power of regex in Excel by Rick Rothstein https://myspreadsheetlab.com/unlock-the-power-of-regex-in-excel/#comment-38786 Sat, 21 Feb 2026 06:29:49 +0000 https://myspreadsheetlab.com/?p=6210#comment-38786 Another formula that would work with your original data at the top of your blog article…

=REGEXEXTRACT(A3:.A500,{“\d+”,”[A-Z][a-z].+”,”[A-Z]{2}”},1)

]]>
Comment on Free Excel Template: Gantt Chart_Planned vs Actual by Mochamad Aris Zamroni https://myspreadsheetlab.com/free-excel-template-gantt-chart_planned-vs-actual/#comment-38784 Fri, 20 Feb 2026 15:06:54 +0000 https://myspreadsheetlab.com/?p=1779#comment-38784 i use vertical side by side planned vs. actual chart

https://www.linkedin.com/pulse/vertical-gantt-chart-mochamad-aris-zamroni/

]]>
Comment on S curve by Gung https://myspreadsheetlab.com/s-curve/#comment-38073 Thu, 01 Jan 2026 15:39:09 +0000 https://myspreadsheetlab.com/?p=4891#comment-38073 Good file for me. Its very helped my job

]]>
Comment on Dynamic Arrays in Action by Segmenting Data in Microsoft Excel | My Spreadsheet Lab https://myspreadsheetlab.com/dynamic-arrays-in-action/#comment-37636 Wed, 03 Dec 2025 01:48:06 +0000 https://myspreadsheetlab.com/?p=5856#comment-37636 […] Dynamic Arrays in Action […]

]]>
Comment on Free Excel Template: Birthday and Anniversary Tracker by Kevin Lehrbass https://myspreadsheetlab.com/free-excel-template-birthday-and-anniversary-tracker/#comment-37280 Fri, 07 Nov 2025 02:55:11 +0000 https://myspreadsheetlab.com/?p=1879#comment-37280 In reply to Amy.

That can be found in data validation…in the ‘Input Message’ tab.

]]>
Comment on Free Excel Template: Birthday and Anniversary Tracker by Amy https://myspreadsheetlab.com/free-excel-template-birthday-and-anniversary-tracker/#comment-36946 Thu, 16 Oct 2025 16:50:26 +0000 https://myspreadsheetlab.com/?p=1879#comment-36946 Thank you so much for sharing this file! How can I change the note in the Description/Comment section? It currently states “Enter Description This is an optional field.”

]]>
Comment on Learn Power Query M code by Kevin Lehrbass https://myspreadsheetlab.com/learn-power-query-m-code/#comment-36381 Wed, 10 Sep 2025 22:36:13 +0000 https://myspreadsheetlab.com/?p=5437#comment-36381 In reply to KRIS JAGANAH.

Thanks Kris !

]]>
Comment on Learn Power Query M code by Kevin Lehrbass https://myspreadsheetlab.com/learn-power-query-m-code/#comment-36380 Wed, 10 Sep 2025 22:35:55 +0000 https://myspreadsheetlab.com/?p=5437#comment-36380 In reply to Meganathan Elumalai.

Thanks Meganathan !

]]>
Comment on Learn Power Query M code by KRIS JAGANAH https://myspreadsheetlab.com/learn-power-query-m-code/#comment-36354 Tue, 09 Sep 2025 14:36:47 +0000 https://myspreadsheetlab.com/?p=5437#comment-36354 #table(
{“Name”,”Duration”},
// Build a new table with 2 columns: Name and Duration

List.Transform(
Table.Split( Excel.CurrentWorkbook(){[Name=”Table1″]}[Content],3) ,
// Split Table1 into chunks of 3 rows each, then transform each chunk

each [
a = Table.ToRows(_) ,
// Convert this 3-row mini-table into a list of row-lists (“a”)

b = (v)=> Number.From( a{v}{0}) + a{v}{1},
// Define a custom function “b” that:
// – takes a row index v
// – converts the first column to number
// – adds it to the second column

c = {
a{0}{0}, // First column, first row → becomes the “Name”
(b(2) – b (1)) * 24 // Difference between row 2 and row 1 via “b”, scaled by 24 → “Duration”
}
] [c]
// Take only c out of that record (discard a and b), return as a list
)
)

]]>