Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: Jun 10, 2026
Topics: 0 / Replies: 841
Reply
RE: Filter a Pivot Table field by "Bottom 10 that are greater than 0"

You shouldn't need that measure actually in the chart at all.

3 years ago
Forum
Reply
RE: Two tables - formula needed (link provided to Excel file with examples and questions)

Without rearranging the data, you can do something like: =SUMPRODUCT((XLOOKUP(A3:A17,E3:E17,F3:F17)="notebook")*B3:B17) to add up Irene's notebo...

3 years ago
Reply
RE: Filter a Pivot Table field by "Bottom 10 that are greater than 0"

You could create a measure called ItemsSoldNoZero with the formula: =if([Sum of Items sold]=0,blank(),[Sum of Items sold]) Then amend your ...

3 years ago
Forum
Reply
RE: Save As, but Both New and Original Remain Open

I'd use SaveCopyAs then open the copy if you really need both open: activeworkbook.savecopyas newfile workbooks.open newfile

3 years ago
Forum
Reply
3 years ago
Forum
Reply
RE: Close to open SharePoint file but not getting it

GetOpenFilename doesn't open workbooks. It appears that all you need is to amend the original code to something like this: With Application.FileDia...

3 years ago
Forum
Reply
Reply
RE: Combining Excel Files from SharePoint Document Library, Combinging Specific sheet Name

For others reading, it appears from the link that this was down to user error, so no need to follow up on this one. 🙂

3 years ago
Forum
Reply
RE: Hidden formatting issue

The Plot column in your Table2023 query is set to Any, not number.

3 years ago
Reply
RE: Hidden formatting issue

The values in Table2023 are text, not numbers. You could amend your formula to use Table2023[Plot]+0=[@Plot] as the criterion. The +0 will coerce the ...

3 years ago
Reply
RE: ADD LINK TO EMAIL TO OPEN

I think you misunderstood. There is nothing in that code that adds any sort of hyperlink. What I am asking is how would you do it manually? Th...

3 years ago
Forum
Reply
RE: ADD LINK TO EMAIL TO OPEN

How would you do it manually? I'm not aware of any hyperlink options to link to a specific email.

3 years ago
Forum
Reply
RE: Why is my COUNTIF formula taking 8 hours to run?

A GETPIVOTDATA formula would be more efficient and doesn't care about the pivot table layout (as long as the specified value cell appears in the pivot...

3 years ago
Reply
RE: Why is my COUNTIF formula taking 8 hours to run?

For a pure formula approach, if you sort the data on column G and then use: =IF(G2=G1,J1,COUNTIF(G:G,G2)) copied down, that should be considerab...

3 years ago
Reply
RE: Why is my COUNTIF formula taking 8 hours to run?

Performing 800k calculations, all but 362 of which are repetitions, is not very efficient. I'd suggest you either sort the data first to that you only...

3 years ago
Page 10 / 57
0