Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Jul 3, 2025
Topics: 1 / Replies: 1936
Reply
RE: olAppointmentItem & .SendUsingAccount not working

Hi, You should take the account from session account objects: .SendUsingAccount = myoutlook.Session.Accounts.Item(2) You can find the account nu...

5 years ago
Forum
Reply
RE: Macro to attach Zip Files within sub-folders

Hi Howard, you should loop through that folder outside your CreateEmail procedure, collect files, when they reach your limit, create an email. S...

5 years ago
Forum
Reply
RE: Pass Named Range to VBA Function

Hi Alan, You did a great job with detailed explanations, thank you for that, we all have preferences and habits. Indeed, it is hard to see the differe...

5 years ago
Forum
Reply
RE: Pass Named Range to VBA Function

Similarly in the last two, Cells.Item(1, 1) is the proper way to write Cells(1, 1) Why is that the proper way? TypeName(Cells.Item(1, 1)) returns...

5 years ago
Forum
Reply
RE: correct

In this case, you can use a loop, but change the processed sheet: For Each ws In ActiveWorkbook.Worksheets ws.Range("F19").UnMerge TEBAL.Range("C1...

5 years ago
Forum
Reply
RE: correct

The problem is in LEN functions, you have references not properly qualified: Len(Range("C4")) Should be: Len(TEBAL.Range("C4")) If you don't ...

5 years ago
Forum
Reply
RE: correct

What is wrong in your file?

5 years ago
Forum
Reply
RE: Replace Multiple Values

You're welcome 🙂

5 years ago
Forum
Reply
RE: Replace Multiple Values

Hi Marsil, The Replace method has more arguments, one of them is MatchCase, that's what you should use.

5 years ago
Forum
Reply
RE: correct

Is it something wrong in your code?

5 years ago
Forum
Reply
RE: Dependent lists

Hi Lee, Without seeing what you did, we cannot say why. It will be best if you upload a sample file with your attempt, will be much easier to help ...

5 years ago
Reply
RE: Include / exclude queries from “Refresh All”

I'm confused. "Can anyone help me in using VBA to selectively include / exclude queries from “Refresh All”?" Is it the code for identifying...

5 years ago
Forum
Reply
RE: Changing to whole numbers

Hi Elisabeth, Excel can read 15 digits, longer strings needs to be formatted as text, not numbers.

5 years ago
Forum
Reply
RE: Error while using power query

Did you edited the Sample File query? Normally, this should be a sample file, not a folder: Adjust the path to your file: let Source = Folder.F...

5 years ago
Forum
Reply
RE: HIDE/UNHIDE COLUMNS AND ADD SUBTOTALS

Try these codes: Sub HideUnhide() Dim i As Long, HideRng As Range, HideStatus As Boolean i = 1 Do Until Len(ActiveSheet.Cells(1, i).Value) = 0 If...

5 years ago
Forum
Page 57 / 130