Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: Jun 12, 2026
Topics: 0 / Replies: 841
Reply
RE: Find what causes vba to trigger

Do you have any workbooks loaded that have userforms with controls linked directly to cells (using controlsource property)? That could cause exactly w...

6 years ago
Forum
Reply
RE: Excel cannot open this file - The file format or file extension is not valid.

Also note that you can't use Scripting.Filesystemobject on a Mac, and Dir doesn't always work terribly well either.

6 years ago
Forum
Reply
RE: How to Create Textboxes at Runtime in a Userform with VBA

So you want one new textbox per click of the button? Where should it be placed?

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

6 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],"<"&...

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

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

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

6 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

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

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

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

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

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

6 years ago
Reply
RE: Shortening a SUMIF function

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

6 years ago
Page 45 / 57
0