Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
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

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

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

2 years ago
Forum
Reply
RE: Hidden formatting issue

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

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

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

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

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

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

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

2 years ago
Reply
RE: Data on Graph

You can define a named range, WeeklyDPMO as: =Sheet1!$J$9:INDEX(Sheet1!$J$9:$J$13,COUNT(Sheet1!$J$9:$J$13)) (adjust to match your real work...

2 years ago
Reply
RE: Dont return zero values

Can you clarify the "when I graph all the data" comment? Charts will only generally ignore blank cells (no cell that contains a formula is truly blank...

2 years ago
Reply
RE: Mass email from Outlook VBA, but need OFT path from cell reference

Set OutMail = OutApp.CreateItemFromTemplate(sheet1.range("E25").value) should do it.

2 years ago
Forum
Page 10 / 56