Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Jul 3, 2025
Topics: 1 / Replies: 1936
Reply
RE: Adding invoices per vendor id

What office version are you using?

4 years ago
Forum
Reply
RE: Command Button Event from Drop Down

In ThisWorkbook.Module, you have to use the Workbook_Open procedure: Sub Workbook_Open() MyFormName.Show End Sub Double click on your form...

4 years ago
Forum
Reply
RE: 2 AND statements with an OR statement?

Should look like this: =IF( OR(G2<78, AND(G2>=2016,K2<=2019)), value_if_true, Value_if_false)

4 years ago
Reply
RE: Adding invoices per vendor id

In Excel you have better alternatives to read that csv, why don't you use Power Query to update data from that csv into the xlsm file?

4 years ago
Forum
Reply
RE: Make Table and card from sheets menu

Here is the code used in the sample file attached: Option Explicit Sub TransferData() Dim tbl1 As ListObject, tbl2 As ListObject, Card As...

4 years ago
Forum
Reply
RE: Adding invoices per vendor id

Hi Jose, Hard to see your data structure without sample files, so I'll provide a theoretical solution: Use a dictionary to store the values by ID, ...

4 years ago
Forum
Reply
RE: Custom UI DropDown select msoFileDialogOpen

To add a dynamic list in ribbon, you have to use the dynamicMenu element in UI xml, text file attached. you'll have to get the list of files and build...

4 years ago
Forum
Reply
RE: Trust my VBA Macros

Certificates will expire. When they do, most likely you will have to release a new version of your app signed with a renewed certificate, otherwise us...

4 years ago
Forum
Reply
RE: Creating Salary Excel Workbook

Splitting data across multiple sheets is a bad idea, you will then need to aggregate data back in order to create reports. Best is to insert data i...

4 years ago
Forum
Reply
RE: Loop through list for each column

What's wrong with the solution provided in the previous topic you have posted for the same problem? I cannot see any difference in the requirements.

4 years ago
Forum
Reply
RE: Error with web scraping using VBA

Hi Gold, I think you should use Set Col1=IE.document.querySelectorAll(".wo-notes-num") instead of HTML.querySelectorAll(".wo-notes-num") If you ...

4 years ago
Forum
Reply
RE: Error Message received with Text.Replace

Hi Alan, That step with the List.Accumulate function will not work without the changes indicated, it will return exactly the same error you mention...

4 years ago
Forum
Reply
RE: Error Message received with Text.Replace

Instead of: = Table.AddColumn(#"Changed Type", "States", each List.Accumulate(States1, "", (state,current) => if List.Contains(Text.Split([A...

4 years ago
Forum
Reply
RE: Database Design & Tool Selection

As mentioned, that is showing because there was a filter applied in that file. Simply go to that power query step indicated in the previous message...

4 years ago
Forum
Reply
RE: Reconciliation tool Addin to convert as power query

Who knows... The file you provide has the vba code protected, we cannot see what it does, how can we know what it is supposed to do?

4 years ago
Forum
Page 33 / 130