Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Mar 17, 2025
Topics: 1 / Replies: 1936
Reply
RE: How To Recognize The Name Of A Txt File. Without having to type it into the routine (.txt)

You can use the FileSystemObject to loop through the txt files in that folder, until you find the one you want.

3 years ago
Forum
Reply
RE: Extracting URL from the Webpage from multiple HTML tables

Hi Ritabrata, Impossible to debug what you did without your test file, can you upload a sample file that reproduces the error mentioned?

3 years ago
Forum
Reply
RE: Share Macro Enabled File on OneDrive that other can make changes

Macros cannot run in Onedrive and cannot be edited in Excel Online. You cannot edit a macro without opening the file on desktop, not sure why you wa...

3 years ago
Forum
Reply
RE: Threaded Comment Extractions in Excel

Now I am confused: If nothin else, I am confused. When I run the macro now, I get 3 separate message boxes that appear one after another (when o...

3 years ago
Forum
Reply
RE: create form of student in excel

Hi Dorsa, Added a function that creates a dictionary, this allows you to check if a specific item exists. Updated and cleaned up some of your co...

3 years ago
Forum
Reply
RE: Filter Inactive status based on Leave Date

Hi Nabila, 1. If the user "Leave date" 13-Jul-22", "Payroll Status" is "Inactive". The result in "Active" field is "No" and "custom_field: Las...

3 years ago
Forum
Reply
RE: print

You have to set the print area, the code does not do that, just prints what you have set. You can view the print area from ribbon: View>Page Bre...

3 years ago
Forum
Reply
RE: Vba for logistic

You can use Me.Unprotect at the beginning of the code, and Me.Protect at the end of code. (will be protected without a password) But you have to ma...

3 years ago
Forum
Reply
RE: Vba for logistic

I need both of them! then use both codes provided. this excel is in the share and the sheet and the workbook is protected, so the code is no...

3 years ago
Forum
Reply
RE: Vba for logistic

The formula below means G10=G9-Q9: Cells(Target.Row, "G").Offset(1, 0).Formula = "=" & Cells(Target.Row, "G").Address(False, False) & "-" &...

3 years ago
Forum
Reply
RE: Vba for logistic

Ok, added code to copy row formats and values: If Not Intersect(Target, Range("Q2:Q1000")) Is Nothing Then If Cells(Target.Row, "G") <> 0 A...

3 years ago
Forum
Reply
RE: Vba for logistic

The code you have is triggered by Worksheet Change event. You want to insert new rows based on sheet changes as well? If column Q should insert...

3 years ago
Forum
Reply
RE: VBA Excel Question

Hi Faisal, I suggest learning all native Excel tools before using VBA, because many things can be done with a proper excel setup, without vba. Y...

3 years ago
Forum
Reply
RE: Vba for logistic

No file attached, please make sure you press the Start Upload button after you use the Add Files to Queue button.

3 years ago
Forum
Reply
RE: Threaded Comment Extractions in Excel

Hi Sherry, Based on your initial sample file, the code works, you can see the results: Are you sure they are comments? Maybe those are... Notes...

3 years ago
Forum
Page 15 / 130