Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Jul 3, 2025
Topics: 1 / Replies: 1936
Reply
RE: Append tables and named ranges from multiple workbooks

You cannot connect to named ranges from external books. All you can do is to convert the named range into a table with same name, Then query the folde...

4 years ago
Forum
Reply
RE: Changing Column types dynamically in a query

Yes, filter to get to the row you need, then extract the value from the column you want. Post your function here if you get stuck.

4 years ago
Forum
Reply
RE: Re-using queries/managing multiple queries

Hi Tim, If there is a query loaded to sheet, not just to data model, when you copy this sheet into a new file all queries and necessary parameters/...

4 years ago
Forum
Reply
RE: Oracle Ora-02391 Excedeed simultaneous Session per user Limit when activating a query without an Oracle connection

Appending those 3 Collect Data queries will run each query, combining them is not an excel query if those queries are getting data from Oracle. If ...

4 years ago
Forum
Reply
RE: Changing Column types dynamically in a query

Build a custom function to get the type. If the name of the new function is GetType, replace: {current, type text} with: {current, type GetType(...

4 years ago
Forum
Reply
RE: Append tables and named ranges from multiple workbooks

You have already a topic here: The following expression works with both tables and named ranges: Source= Excel.CurrentWorkbook(){[Name="NamedRang...

4 years ago
Forum
Reply
RE: Extract all attachments from .EML file

Added this code in a module: (adapted from Option Explicit #If VBA7 Then Declare PtrSafe Function FindWindow Lib "user32" Alias "FindWindowA"...

4 years ago
Forum
Reply
RE: Interactive Leave Management

Hi Charlie, Remote multiuser excel application can be done, but it's a complex task, needs a user database with permissions, leave settings, imple...

4 years ago
Forum
Reply
RE: Extract all attachments from .EML file

You have removed the line Wait 2 Here is the missing code, put back the line you removed: Private Sub Wait(ByVal nSec As Long) nSec = nS...

4 years ago
Forum
Reply
RE: Extract all attachments from .EML file

Try this code: (adapted from) #If VBA7 Then Private Declare PtrSafe Function ShellExecute Lib "shell32.dll" Alias _ "ShellExecuteA" (ByVal hwnd...

4 years ago
Forum
Reply
RE: Power Query - Include specific sections of the report based on a title of the specific cell reference and stop when there is a blank row.

Just start a new blank query with this formula: = Table.SelectRows(Test, each _[Custom]="Failed") (replace "Failed" with "Manual" for the other...

4 years ago
Forum
Reply
RE: Power Query - Include specific sections of the report based on a title of the specific cell reference and stop when there is a blank row.

Great, glad to hear you're happy. Please mark the topic on other forums where you posted this question as solved, to stop them from spending time o...

4 years ago
Forum
Reply
RE: Power Query - Include specific sections of the report based on a title of the specific cell reference and stop when there is a blank row.

This was very good information. Thank you Have you seen the file attached to my previous message? It has the solution as well,. not just "good in...

4 years ago
Forum
Reply
RE: Power Query - Include specific sections of the report based on a title of the specific cell reference and stop when there is a blank row.

In the attached file, change the path to your sample file in the "Test" query. Basically, the idea is to add a new column to identify the target he...

4 years ago
Forum
Page 35 / 130