Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Jul 3, 2025
Topics: 1 / Replies: 1936
Reply
RE: What is the best way to merge (index & match in Excel) column with two different tables in Power Query

Hi Chris, Append Table2 to Table 1, this will create a single table with all data. Use this single full table to merge it with the single column ta...

6 years ago
Forum
Reply
RE: Extract all hyper URLS

I suggest recording a macro while removing duplicates manually, you will be able to reuse it and call it from the code provided, after the loop.

6 years ago
Forum
Reply
RE: Extract all hyper URLS

Just sending the file without saying what the problem is, is not at all useful. It's like saying "Houston, we have a problem..." The code works, re...

6 years ago
Forum
Reply
RE: Extract all hyper URLS

H Marsil, You can try this basic code (you need to add references to Microsoft HTML Object Library and Microsoft Internet Controls): Sub GetLi...

6 years ago
Forum
Reply
RE: Is there any similar M code for Excel.CurrentWorkbook( ) for bring in external xlsx to a blank worksheet

Hi Chris, Attached is an example, you can use that, or start with a blank query with this formula: = Excel.Workbook(File.Contents("C:UsersCatali...

6 years ago
Forum
Reply
RE: Is there any similar M code for Excel.CurrentWorkbook( ) for bring in external xlsx to a blank worksheet

Hi Chris, Not sure what you want. D Drive I guess is a local drive? You can use File.Contents(FilePath) , this will return file data in binar...

6 years ago
Forum
Reply
RE: Refer always to the same folder in power query

Hi Jacek, Try this: try let Source = Excel.Workbook(File.Contents("C:UsersCatalinDesktopNew folderSourceTable.xlsx"), null, tru...

6 years ago
Forum
Reply
RE: Training Record - Query

Hi Mudita, It's not just a formula you need, you have to organize the data efficiently. For this, you have to ask yourself a few questions: A...

6 years ago
Reply
RE: Excel Frustration!!

Hi Paul, in Excel, 1 day=1 unit, half day =0.5 units. 1 hour=1/24=0.041666667 =32.89/24 will give you 1.3704 days. If you format the cell...

6 years ago
Reply
RE: Alternative to For Next loop

Always use full references, unless you need it to work on active sheet by design (for an add-in). To be more accurate, the reference is still not c...

6 years ago
Forum
Reply
RE: Alternative to For Next loop

You are using relative reference to cells, and that is wrong. Cells(8,2) refers to active sheet. What if Sheet1 is selected? The following line ...

6 years ago
Forum
Reply
RE: When and how to use the correct data type such as Integer/long/String in VBA?

Hi Chiew, Normally, you should find the answer in a book, it's hard to condensate an answer that can take a few pages in a short message. You ca...

6 years ago
Forum
Reply
RE: OLAP Query Running for more than 5 minutes

Hi Olusoji, Without seeing the file, it is impossible to say why. We have to see how the query is built, what measures are you using and so on.

6 years ago
Forum
Reply
6 years ago
Forum
Reply
RE: Alternative to For Next loop

Hi Trond, Can you run this code? MsgBox Cells(2, 8).Address You are using the range A2:B8 in the first test, but Cells(2,8) is not B8. Rememb...

6 years ago
Forum
Page 79 / 130