• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Search results

  1. H

    Filter Pivots and generate report

    Pls Provide Sample workbook
  2. H

    Help - Schedule Macro

    Hi Ninjas, Pls help. I have written a macro, which will extract mails from my OUTLOOK when we run the macro. I want to schedule the macro at 10 am, 1 pm and 4 pm, to avoid manual click(Run Button) But i am not able to schedule it, pls help. Thanks, Hareesh
  3. H

    Using VBA to highlight entire Row of current cell.

    Hi Try this Sub SelRow() Dim i As Integer i = ActiveCell.Interior.ColorIndex ActiveCell.EntireRow.Interior.ColorIndex = 15 ActiveCell.Interior.ColorIndex = i End Sub
  4. H

    Extract only forwarded mails from outlook to excel

    Hi All pls help I want to extract only forwarded mails from outlook inbox to excel sheet using vba code I am able to extract all mails, but I want only forwarded mails to extract Pls help
  5. H

    Excel (now) formula issie

    https://spreadsheeto.com/recalculate-and-refresh-formulas/
  6. H

    Cap Table Scenarios

    Hi your file not opening, pls attach another file
  7. H

    Macro for applying filter

    Hi, Check the attached sheet
  8. H

    Macro for applying filter

    Hi, Pls check the attached Sheet ** if you want "All" in "C2 to G2", leave that cell as blank in the attached sheet i left D2 as Blank that means All
  9. H

    Filter only symbols based on Signals

    Hi, use following formula (ctrl+shift+enter) and drag to down I2 =IFERROR(INDEX($A$1:$G$17,SMALL(IF($G$2:$G$17<>"",ROW($G$2:$G$17)),ROW(1:1)),1),"") J2 =IFERROR(INDEX($A$1:$G$17,SMALL(IF($G$2:$G$17<>"",ROW($G$2:$G$17)),ROW(1:1)),7),"")
  10. H

    Lookup Based On Less Than and Same N Month

    Hi check the attachment
  11. H

    Move sheets and save work book

    Hi, try following code, it will move all worksheets except sheet1 to new workbook and will save with name Mybook on desktop Sub MoveSheets() Dim wb As Workbook Dim ws As Worksheet Application.ScreenUpdating = False Set wb = Workbooks.Add For Each ws In...
  12. H

    how to arrange Horizontal data convert into vertical data

    Hi, one of the solution is using OFFSET formula ***here names are fixed and total 12 names in OFFSET formula for rows you can use 0,12,24,36,48... for Jan,Feb,Mar,Apr,May... Check attached sheet (sheet1 H19:O31)
  13. H

    search date

    try following code Sub srchdate1() Dim dDate As Date Dim str As String Dim mycell As Variant str = InputBox("EnterDateHere") dDate = CDate(str) mycell = Range("V2:V17000").Find(dDate).Address Range(mycell).Select End Sub
  14. H

    search date

    @Belleke i wrote clearly what my code will do
  15. H

    search date

    Hi following code will select current date in range("V2:V17000") Sub srchdate() Dim mycell As Variant mycell = Range("V2:V17000").Find(Date).Address Range(mycell).Select End Sub
  16. H

    How to Overwrite Named range on itself paste as only value & formatting?

    Sub DefineRng() Dim rng2 As Range Set rng2 = Range("E1").End(xlDown).Offset(3, -1).Resize(5, 3) ThisWorkbook.Names.Add Name:="My2ndRng", RefersTo:=rng2 Range("My2ndRng").Formula = Range("My2ndRng").Value End Sub
  17. H

    How to Overwrite Named range on itself paste as only value & formatting?

    Hi with the help of Marc L Tip Sub DefineRng() Dim rng2 As Range Set rng2 = Range("E1").End(xlDown).Offset(3, -1).Resize(5, 3) rng2.Formula = rng2.Value End Sub
  18. H

    IF Statement

    In Cell A2 use following =TODAY()
  19. H

    Loop through range and apply formatting based on value of cells from another range

    Another one, with same result Sub loopColor() Dim c As Range For Each c In Range("A1:B10") If c.Offset(0, 2).Value = "" Then c.Interior.ColorIndex = 16 Next c End Sub
  20. H

    IF Statement

    Hi, First Unhide the Column H and drag formula upto H10006 then change rules in CF dialog from =$A$5:$G$16 to =$A$5:$G$10006
  21. H

    IF Statement

    Hi Check the attached workbook
  22. H

    check blank row

    Hi pls ignore earlier sheet and use this sheet
  23. H

    check blank row

    Hi Check the attached sheet
Back
Top