Forum

Fluff
@fluff
Eminent Member
Joined: Jul 31, 2020
Last seen: Apr 8, 2025
Topics: 0 / Replies: 36
Reply
Reply
RE: Can XLOOKUP solve my multi level search to obtain value?

How about =INDEX(B2:B15,AGGREGATE(15,6,(ROW(B2:B15)-ROW(B2)+1)/(A2:A15=Q2)/(C2:N15=Q3),1))

4 years ago
Reply
RE: Use UNIQUE and FILTER function to return duplicate values only

How about =UNIQUE(FILTER(C4:C10,ISNA(XMATCH(C4:C10,UNIQUE(C4:C10,,1),0))))

4 years ago
Reply
RE: MS-Excel VBA | Assign Values to Array, Sort, and Write Values to Cells

.NET Framework 2.0 installed but got the SAME result / problem. In that case I'm not sure why you get that error.

4 years ago
Forum
Reply
RE: MS-Excel VBA | Assign Values to Array, Sort, and Write Values to Cells

Sounds like you need to install the .NET Framework 2.0 which you can get here

4 years ago
Forum
Reply
RE: MS-Excel VBA | Assign Values to Array, Sort, and Write Values to Cells

How about Private Sub Worksheet_Activate() Dim vItemCode As Range Dim myArrayLst As Object Set myArrayLst = CreateObject("system.collections.array...

4 years ago
Forum
Reply
RE: Formula to find date and time after specific word which appears multiple times in a single cell

If you have the new LET function how about =LET(Qty,(LEN(A2)-LEN(SUBSTITUTE(A2,"STOP@","")))/5, Sub,SUBSTITUTE(A2,"STOP@","|",SEQUENCE(2,,Qty-1)),T...

4 years ago
Reply
RE: Sum Total Hours

You're welcome & thanks for the feedback

4 years ago
Reply
RE: Sum Total Hours

How about =SUMPRODUCT(($AF$2:$AF$9=C2:AD2)*($AG$2:$AG$9))

4 years ago
Reply
RE: CHOOSE function with a variable number of choices?

Once again probably not quite what you want, but two options. 1) if you have the LET function =LET(Rng,B2:G47,CHOOSE(SEQUENCE(,COUNT(B2:G2)),SLO...

4 years ago
Reply
RE: WorksheetFunction.Countifs not Work VBA

The problem is that you are using a static range in the COUNTIFS, you need to increment the row like .Cells(thisRow, "E").Value = WorksheetFunction...

4 years ago
Forum
Reply
RE: How to create a Visual Basic to highlight cells when the value changes

To do that you would need to store all the changes that were made, along with cell references, to another sheet.

4 years ago
Forum
Reply
RE: How to create a Visual Basic to highlight cells when the value changes

How about Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range) Dim RwOffset As Long If Target.CountLarge > 1 Then Exit Su...

4 years ago
Forum
Page 2 / 3