Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Mar 17, 2025
Topics: 1 / Replies: 1936
Reply
RE: Threaded Comment Extractions in Excel

My mistake: Instead of : MsgBox "No threaded comments found in " * wks.Name Should be: MsgBox "No threaded comments found in " & wks.N...

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

Hi Sherry, Try this version, I cleaned the code and reorganized it: Sub ListCommentsRepliesThreaded() Application.ScreenUpdating = False Di...

3 years ago
Forum
Reply
RE: vba code required to manipulate data - not too sure how to describe it but included details below

Hi Bryan, It's much easier with Power Query, see the file attached. To get the results, simply right click the PQ Output table and click Refresh...

3 years ago
Forum
Reply
RE: Counting within blocks of data

Hi Kevin, Can you upload a sample file please? Thank you

3 years ago
Reply
RE: print

try this one: Sub PrintSheet() Dim i As Long For i = 1 To 14 ActiveSheet.PrintOut ActiveSheet.Range("A1").Value = ActiveSheet.Range(...

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

Hi Sherry, You should start writing comments from the first reply column at each comment. This means you have to reset the reply column INSIDE t...

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

Hi Sherry, I think there is a mistake here: If myCmt.Replies.Count > 1 Then The line does not handle the comments with 1 reply only. Shoul...

3 years ago
Forum
Reply
RE: Selecting Data in a Userform Listbox

Hi Michael, This loop is not right: For i = 0 To Range("H65356").End(xlUp).Row - 1 If Results.Selected(i) Then UserForm.lstDisplay.Value = Sear...

3 years ago
Forum
Reply
RE: How to Create a File in Csv Format Taking Only Part of Data From Excel Sheet

Try this one: Sub Crea_File_Csv() Dim NewWb As Workbook: Set NewWb = Workbooks.Add ThisWorkbook.Worksheets("Sheet1").Range("A2:D17").Copy Desti...

3 years ago
Forum
Reply
RE: Copiar e Colar em outra planilha

Hi Amarildo, Please post your question in english, not all of us speak your language. thank you

3 years ago
Forum
Reply
RE: print

Simply use this code in a standard vba module: Sub PrintSheet() ActiveSheet.PrintOut ActiveSheet.Range("A1").Value=ActiveSheet.Range("A1").V...

3 years ago
Forum
Reply
RE: Multiple pdfs with multiple pages

Hi Sjaak, When you import from folder, you should have a table with all the files in that folder. In this table, add a new column calling the...

3 years ago
Forum
Reply
RE: print

Hi, You want to print to active printer or to pdf?

3 years ago
Forum
Reply
RE: Validate three conditions and insert row

Hi Adriano, In the block 2 you sent, I see a new row ONLY under those 3 PC/NC, but no rows under the block: According to your description, i...

3 years ago
Forum
Reply
RE: Validate three conditions and insert row

Yes, I can help you, but clarify first the issues described above. Thank you

3 years ago
Forum
Page 16 / 130