Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Jul 3, 2025
Topics: 1 / Replies: 1936
Reply
RE: Speed Up Refreshing 900 Web Queries.

Make sure the symbols are the ones that can be used in link. For example, you had symbols like: ABR.A, but the link needs to be ABR-PA for this symbol...

6 years ago
Forum
Reply
RE: Speed Up Refreshing 900 Web Queries.

All you have to do is to paste symbols in the blue left table, and refresh the right green table. Make sure the symbols are correct, they need o be...

6 years ago
Forum
Reply
RE: Speed Up Refreshing 900 Web Queries.

Try the attached version, there is one query for all symbols.

6 years ago
Forum
Reply
RE: Power Query will not make a connection with current or new queries

Hi Gary, You can try to open Excel in Safe Mode, this will not load any add-in, but power query will still be functional if it's excel 2016 and not...

6 years ago
Forum
Reply
RE: Speed Up Refreshing 900 Web Queries.

Hi Jeremy, Can you upload a sample file with 3-4 queries only? There is no Table.Buffer in vba, it's a power query function, it should be used i...

6 years ago
Forum
Reply
RE: Using VBA to search a list of Alphanumeric numbers in a bigger list of Alphanumeric numbers and then enter a numeric value in the cell corresponding to it

Hi Koel, You can try this code: Sub DistributeSKU() Dim InvSheet As Worksheet, Orders As Worksheet, i As Long, RowIndex As Long, ColumnIndex A...

6 years ago
Forum
Reply
RE: Copying multi-column excel table data

Then you should upload a sample file so we can see what's wrong, works on my side.

6 years ago
Forum
Reply
RE: Categories distribution

Hi Bill, Here is a code you can try: Sub GetCategory() Dim Dict As Object: Set Dict = CreateObject("scripting.dictionary") Dim i As Long, Ca...

6 years ago
Forum
Reply
RE: Copying multi-column excel table data

If source columns are consecutive, try: Sheet2.Range("tblEnlisted[[Name]:[Index]]").Copy Destination:=Sheet7.Range("tblDay1[Column1]")

6 years ago
Forum
Reply
RE: Dynamic Column Name with Dynamic Function

Hi Geoffrey, Try this version: let GetResults=(URL) => let Source = Web.Page(Web.Contents(URL)), #"Removed Other Columns" = Table.SelectCol...

6 years ago
Forum
Reply
RE: How to remove duplicates in SUMIFS criteria list by an array formula

Hi Abrar, You can try this formula, but I doubt that will work. A formula solution is not the best idea, try Power Query.

6 years ago
Reply
RE: Power Pivot Table -Many to many

Hi, If you don't want the pivot to aggregate the data, you will have to add an index column in your source and display that in your pivot, in rows ...

6 years ago
Reply
RE: Running Total With Criteria

You are close: =SUMIF($A$2:$A2,A2,$B$2:B2)

6 years ago
Reply
RE: Possible to show sum of last n number of months from a report?

ok, i added the column I mentioned, had to unpivot first, as your data was on a horizontal layout.

6 years ago
Forum
Reply
RE: search keyword in multiple word documents

Hi Srikanth, You can use the code written by macropod, can be used for word or pdf as well.

6 years ago
Forum
Page 89 / 130