MrExcel Excel Videos

Learn Excel from MrExcel - Excel tips and tricks from Bill Jelen.
How to generate random dates in Excel. How to generate random date and time in Excel. Table of Contents (0:00) Welcome (0:34) Random Date in Excel (2:38) Random Time in Excel (3:01) RandomTime During the Workday in Excel (3:58) Random Time to nearest quarter hour (4:45) Random Date /Time in Excel (5:36) Random Weekday in 2025 in Excel (6:44) Random Weekday No Holidays in Excel (7:45) Randomly Choose a Monday or Thursday in Excel (9:19) Randomly Choose particular weekdays in Excel (10:35) Wrap-Up
After sorting by number of characters in a cell, we get a variant from Thinks Too Much (b): Can you sort, factoring in the width of the letters in the font that is being used? Table of Contents (0:00) Welcome Back (0:12) Question (0:40) VBA code to measure width (1:44) Differing fonts & sizes (2:15) Nancy Faust Here is my VBA solution: Sub SortAscCustomerWidth() FinalRow = Range("E1048576").End(xlUp).Row OrigWidth = Columns(5).ColumnWidth HelperColumn = Range("XFD1").End(xlToLeft).Column + 1 Cells(1, HelperColumn).Value = "Helper" ' Loop For Each cell In Range("E2").Resize(FinalRow - 1) cell.Select Selection.Columns.AutoFit Cells(cell.Row, HelperColumn).Value = Columns(5).Width...
Excel getting the unique values going across a row. The Remove Duplicates command in Excel always removes rows. What if you want to remove duplicates that appear in the same row? The UNIQUE function offers a By Column option. Also in this video: Sorting sideways in Excel using the Left-to-Right Sort option. What happens if you leave off the optional By_Col argument in UNIQUE. Why UNIQUE returns the original range. Table of Contents (0:00) Sort or Unique sideways in Excel (0:37) UNIQUE by Column (1:48) Nested arrays not supported (2:00) Sorting sideways in Excel (2:38) UNIQUE of rectangular range (3:33) Why UNIQUE returns original range (4:15) BYCOL defaults to False (4:35) UNIQUE of rectangular range (4:55) Wrap-up This video answers...
Stevenson asks: Why won't this SUMIFS work inside of a LET function in Excel? It turns out that he is trying to do a calculation in the first argument of the SUMIFS. This is against the rules. If you would have tried it without the LET, Excel would have given you the mysterious error of "There's a Problem With This Formula". When you try to do it inside of LET, the formula parser is not smart enough to refuse the formula, but you end up with a bunch of #VALUE! errors in Excel. The same limitation applies to SUMIFS, COUNTIFS, AVERAGEIFS, MAXIFS, MINIFS, SUMIF, AVERAGEIF, DSUM, DCOUNT, DAVERAGE and so on. The workaround is to switch to a FILTER function inside of the LET or simply a FILTER function inside of a SUM. Table of Contents...
LC has 4000 rows of Excel data. After every two rows, he wants to insert a blank row. How can he quickly insert 2000 blank rows in the data? My solution today involves a formula to create alternating cells with text and numbers. Then Home, Find & Select, Go To Special. Select all Formula cells that result in Text. This selects every other row. You can then Insert Sheet Rows and you are done in less than 60 seconds.
How to calculate the current streak in a habit tracker. Amreen is building a habit tracker in Excel. For each goal, he wants to report the current streak. I show how to use XMATCH to solve this problem. Table of Contents() (0:00) The goal (0:40) XMATCH formula for last 1 (1:08) Last zero (1:29) No streak? (1:45) How long is streak? (2:30) Episode 735 for longest streak (3:05) Converting to checkmarks (4:32) Colors in Excel number format
Can Excel VBA return a dynamic array from a user defined function to the grid? Can you repeat each cell in column A based on the number in column B? Check out the amazing answers from Smozgur and XLLambda here: https://www.mrexcel.com/board/threads/repeatbynumber.1216836/ Table of Contents (0:00) Two titles (1:11) Using VBA (2:05) How many cells to return (2:50) Building the array (3:22) Return array to grid (4:00) Using Hash array operator

Forum statistics

Threads
1,221,525
Messages
6,160,327
Members
451,637
Latest member
hvp2262

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top