About 50 results
Open links in new tab
  1. Remove from sheet ALL identical rows based on N columns (not just ...

    Aug 15, 2019 · For above example, rows 1,4,6 and 2,7 must be removed. How to make that with nice VBA code? (I made that with macro recorded, but code is ugly and work slowly.)

  2. Dictionary Excel VBA Error 451 - social.msdn.microsoft.com

    Sep 22, 2020 · For i = 2 To UBound (vDB, 1) If Dic.Exists (vDB (i, 1)) Then Else Dic.Add vDB (i, 1), vDB (i, 1) End If Next i r = Dic.Count ReDim vR (1 To r, 1 To 3000) For i = 1 To r vR (i, 1) = Dic.Items (i - …

  3. VBA Code for transferring data from email in Outlook to a spreadsheet ...

    Aug 10, 2012 · sAddr = vAddr (UBound (vAddr)) End If xlSheet.Range ("B" & rCount) = sAddr End If This should resolve the e-mail address whether it is plain text or in the form of a hyperlink.You should …

  4. Shape with hole - social.msdn.microsoft.com

    Jul 14, 2017 · Option Explicit #Const App = "Excel" '#Const App = "PowerPoint" '#Const App = "Word" Sub Test () Dim Sh As Shape Set Sh = CreateRegionShape (ActiveSheet, msoShapeStylePreset9, …

  5. Programmatically add item to SharePoint List Using Excel VBA

    Jan 19, 2019 · Solutions reviewed all involve linking an Excel table to SharePoint and publishing the content keeping the two versions in synch. Looking for a solution that does not involve …

  6. Porting VBA to VB NET rich textBox - social.msdn.microsoft.com

    Jun 30, 2011 · I'm a VB NET novice and now I am trying to recreate the behaviour of my VBA_SAMPLE Makro (Word 2K3) in a rich textbox control of my 1st VS 2k8 Express project, which is tell the red …

  7. How to tell if an array is initialized for For Each loops?

    Jan 23, 2017 · The Collection type in VBA is almost as tedious as an array, and lacks InteliSense, and I don't know how to cast from one type to another in VBA (is that possible?). To create decent …

  8. Excel VBA code to filter the data based on multiple text entered in the ...

    Dec 5, 2013 · I want to filter the excel data based on multiple text entered by the user in a text box. So code shall read the mutliple text entered in TB and show data that contains those texts. Below is my …

  9. MSDN

    MSDN

  10. Applying a Border to All Cells in a Multi-Area Range (C#)

    Aug 8, 2011 · I have used the Union function to create my multi-area range, by adding individual cells. When I try to use the BorderAround function, only groups of cells get the border, not each cell.