Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Index/Match Assistance

You can use an array formula: =INDEX(A2:A10,MATCH(MAX(IF(B2:B10>0,IF(B2:B10<=B1,B2:B10))),B2:B10,0)) entered with Ctrl+Shift+Ent...

6 years ago
Reply
RE: Macro to hide columns beginning with the text "freight"

I still can't see why an autofilter wouldn't suffice if you're only looking in one column (as the original post says, although the subsequent code imp...

6 years ago
Forum
Reply
RE: Combining MAX IF and INDEX MATCH

You could use: =INDEX($C$4:$C$31,MATCH(MAX(IF($A$4:$A$31=G5,$B$4:$B$31)),IF($A$4:$A$31=G5,$B$4:$B$31),0)) array entered with Ctrl+Shif...

6 years ago
Reply
RE: VLookup & Match

FWIW, you could simplify a little to: =INDEX(2:2,MATCH(C12,INDEX($B$3:$O$8,MATCH(C11,A:A,0),0),-1)+1) thereby also avoiding a volatile INDIRECT ...

6 years ago
Forum
Reply
RE: XLOOKUP Function

Unless you are on Insider Fast channel, you won't have it yet.

6 years ago
Reply
RE: Probably very simple!

I think you have a bracket in the wrong place, and it should be: =INDEX(ClientTable[Company],MATCH([@[First Name]]&[@[Last Name]],ClientTable[F...

6 years ago
Reply
RE: Index - not working

Since your data range starts in column F, but you have put the formula in column E, there is no implicit intersection and you get a #VALUE error becau...

6 years ago
Reply
RE: 0% not displaying

Also check File - Options - Advanced, scroll down to the 'Display options for This Worksheet' section and check that the 'Show a zero in cells that ha...

6 years ago
Reply
RE: GETPIVOTDATA dynamic references - doesn't work for dates

Assuming the date you want is in A2, you'd use something like &TEXT(A2,"yyyy-mm-dd""T00:00:00""") rather than just &A2. Or did I misunderstand...

6 years ago
Forum
Reply
RE: Pivot Table - Top 10 For Each Group

You are getting top 10 for both. The issue is that you have so many equal counts in the second group (note that there are also more than 10 displayed ...

6 years ago
Reply
RE: Barcode ID split into few textbox in userform VBA

FWIW, you could also use a couple of user-defined types, like this: Private Type theBarcode theCode As String * 30 End Type Private Type Barco...

6 years ago
Forum
Reply
RE: ON error for "autofilter" that doesn't match the values in the range

That is not the code I suggested. Please at least try what I posted.

6 years ago
Forum
Reply
RE: ON error for "autofilter" that doesn't match the values in the range

You didn't answer my question: did you actually try the code I suggested? If so, what happened? If not, why not? 😉

6 years ago
Forum
Reply
RE: Preventing duplicate entries

If it's only a few cells, you could use: =SUM(COUNTIF(INDIRECT({"B16", "B21", "B26", "B31"}),"*"&B16&"*")) Also, just FYI, you don'...

6 years ago
Reply
RE: ON error for "autofilter" that doesn't match the values in the range

No, I see no attachment. Did you try the code I suggested? If so, what happened?

6 years ago
Forum
Page 49 / 56