Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: Jun 12, 2026
Topics: 0 / Replies: 841
Reply
RE: Question adding pictures from hyperlinks in Excel file

You can use a simple loop: Sub loadPictures() For Each cell In Selection addpic cell.Value, cell.Offset(, -1) Next cell End Sub Sub addpic(url...

7 years ago
Reply
RE: percentile rankings to set grades

I think you could use something like: =LOOKUP(B2,PERCENTILE.INC($B$2:$B$10,{0,0.06,0.28,0.5,0.73,0.95}),{2,3,4,5,6,7}) where B2:B10 ha...

7 years ago
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...

7 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...

7 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...

7 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 ...

7 years ago
Forum
Reply
RE: XLOOKUP Function

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

7 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...

7 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...

7 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...

7 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...

7 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 ...

7 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...

7 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.

7 years ago
Forum
Page 49 / 57
0