Forum Replies Created
-
AuthorPosts
-
administrator@dailyexcel.netKeymaster
The MATCH function:
older (compatibility advantage) and simpler syntax
The XMATCH function:
extra features such as last-to-first search, much better with next smaller (larger) matching
As far as I know, there are no noticeable differences in performance.
administrator@dailyexcel.netKeymasterHm, you could duplicate your Date table, filter out dates that are not end-of-month dates, and then join that table.
Br,
administrator@dailyexcel.netKeymasterYou will not be able to accomplish what you want by unpivoting columns. However, you can:
Go to your Date table, add Custom Index Column, Starting Index 0, Increment 0
Go back to your Query, add Custom Index Column, Starting Index 0, Increment 0
Merge Date table into your Query using those two new columns; use Left Outer join
After expanding, you will have all of the rows from your Date table available.
Add Conditional Column, “Custom”, each if ([Joined]›=[From] and [Joined] ‹= [To]) then “keep” else “delete”
Filter Custom and keep only “keep”
Delete all the unnecessary columns.
Br,
administrator@dailyexcel.netKeymasterThat’s a tilde ~ character.
To replace a tilde (or a wildcard character, a question mark ? and asterisk *) you will have to use another tilde to tell Excel you aren’t trying to use wildcard characters in Find and Replace.
Type
~~ in order to replace ~
~? in order to replace ?
~~ in order to replace ~
Br,
- This reply was modified 1 week, 5 days ago by administrator@dailyexcel.net.
administrator@dailyexcel.netKeymasterNot 100% sure I understand what is going on here.
If your INDEX has more than one row and column, you will need INDEX MATCH MATCH instead of INDEX MATCH.
If you are trying to retrieve a column and compare it with your FV6:FV34 column, you can try something like this:
=FILTER(GE6:GE34,FV6:FV34=INDEX(FT6:GA34,0,MATCH("UGW2800",FT6:GA6)))
If you want, you can email your example.
Br,
September 27, 2025 at 23:56 in reply to: Can the Create PDF icon be removed from the Home Tab in Excel? #10847administrator@dailyexcel.netKeymasterFile/Options/Customize Ribbon
You can remove any unwanted commands, including those added by third-party software.
Update: I’ve expanded on this topic in the following article.
Br,
- This reply was modified 2 weeks, 4 days ago by administrator@dailyexcel.net.
administrator@dailyexcel.netKeymasterExcel does not limit the number of worksheets!
For example, you can create 1000 worksheets using the following VBA code:
Sub AddSheets() Dim n As Integer For n = 2 To 1000 Sheets.Add(After:=Sheets("Sheet" & n - 1 )).Name = "Sheet" & n Next n End Sub
This number probably comes from the limits imposed by other (legacy) software, i.e. Lotus, OpenOffice etc.
administrator@dailyexcel.netKeymasterIf it helps, you can use the SUBSTITUE function to clean up your text string before giving it to the DATEVALUE function, something like this:
=DATEVALUE(SUBSTITUTE("dd.mm.yyyy.";".";"";3))
Br,
- This reply was modified 3 weeks, 2 days ago by administrator@dailyexcel.net.
administrator@dailyexcel.netKeymasterHi John,
I also remember using the DATEVALUE function in that way in pre-Excel 2021 versions; there is even an example given in this blog post, and it also does not work for me in the Excel 2021 or Microsoft 365 version.
On the other hand, text strings such as “dd-mm-yyyy” are still accepted by the function!
Br,
-
AuthorPosts