Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Is there a way to format a number when it is placed in a row field in a pivot table?

If it's a regular pivot table (non data model) and all the data in that field is numeric, then there should be a number format button at the bottom of...

5 years ago
Reply
RE: array formula to count unique value in a filtered table

I think this works: =SUM(--(FREQUENCY(IF(SUBTOTAL(3,OFFSET(Table1[ID],ROW(Table1[ID])-MIN(ROW(Table1[ID])),0,1)),COUNTIF(Table1[ID],"<"&...

5 years ago
Reply
RE: What does a new 365 function look like when file opened in old Excel version?

They should see a #NAME? error and the function will be prefixed with _xlfn in the formula bar. Edit: the above is what will happen if the for...

5 years ago
Reply
RE: Can we do some Excel layout magic for displaying some pivot tables?

Frans, I assumed that, which is why I suggested using event code to automate the hiding/showing of rows. I'm not clear on why side-by-side would...

5 years ago
Reply
RE: Can we do some Excel layout magic for displaying some pivot tables?

Since most people have their monitors in landscape orientation in my experience, I'd probably put them side by side but, if you want them under each o...

5 years ago
Reply
RE: Error on VBA code for pull or extract data from HTML Element in Excel

I suspect you just forgot to name the module you borrowed JSONConverter

5 years ago
Forum
Reply
RE: on Mac

As mentioned on other forums where this was posted, you can't use Rowsource for a listbox (or combobox) on a Mac.

5 years ago
Forum
Reply
RE: Sumifs for multiple horizontal and vertical criteria

SUMIFS won't work for that, you will need SUMPRODUCT. It won't be that much less efficient assuming you only refer to the necessary ranges and not ent...

5 years ago
Reply
RE: VBA : The color of the shape (country) doesn't change accordingly to the value in a cell

Something like this would work if you had shapes for every country listed in column A (you don't currently): Private Sub Worksheet_Change(ByVal Tar...

5 years ago
Forum
Reply
RE: Index/match or vlookup a range where value matches in a table

FWIW, since your table appears to be sorted by Team and then points value, you could also use: =IFERROR(LOOKUP(2,1/(Levels[Team]=A2)/(Levels[Total ...

5 years ago
Reply
RE: Shortening a SUMIF function

No, it just means that you only need: =SUMPRODUCT((C$2:C$12=$K$2:$K$12)*$K$2:$K$12) rather than: =SUMPRODUCT(--(C$2:C$12=$K$2:$K$12)*$K$2:$K$...

5 years ago
Reply
RE: Shortening a SUMIF function

That's because they're the only ones with repeated values in column K.

5 years ago
Reply
RE: Shortening a SUMIF function

The issue with the SUMPRODUCT and SUMIF construction is that you're basically doing this: SUMIF(E2:E12,K2)+SUMIF(E2:E12,K3)+SUMIF(E2:E12,K4)+... and s...

5 years ago
Reply
RE: Error Code when creating Array

I'd assume it's your regional settings. You probably need something like: =COLUMNS({123;0})

5 years ago
Reply
RE: User forms: populate option boxes from sheet

Your ReadOptionBoxes routine uses the active cell, but your UpdateDisplay routine doesn't move the selection until after it's populated everything. If...

5 years ago
Forum
Page 45 / 56