• 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. Debraj

    Count unique data of a column

    Hi XLPadawan, Nice way.. :) BTW.. did you tried.. by filling any of the word.. more than 8 times (your fixed count of any number in the attachment..) and just for curiosity.. Which one you want to avoid more.. "Array Formula" or "Using lots of Helper Cell"
  2. Debraj

    Hide and Unhide cell with multiple criteria

    Hi Sophanith! try this.. Private Sub CheckBox1_Click() Dim myrange As Range Set myrange = Range("B1:B300") For Each cell In myrange If cell <> "" Then If cell.Value = "KHR (Riel)" Or cell.Value = "USD ($US)" Or cell.Value = "THB (Baht)" Then cell.EntireRow.Hidden = CheckBox1...
  3. Debraj

    Hide and Unhide cell with multiple criteria

    Hi sophanith.. a sample file is appreciabe..to know the structure.. and multiple criteria type..
  4. Debraj

    Change month into week number

    Just for basic purpose... you can use in B3.. =WEEKNUM(1&A2) In case if its working.. you can avoid.. checking # of weeks in the month.. irrespective of 4 or 5.. and week should be start from 1st monday.. Let us know if you want.. BTW.. in c3, d3, you can just add B3+1.
  5. Debraj

    Change month into week number

    Hi BigMo.. Welcome to the forum Pease re-upload.. check here for more detail.. http://chandoo.org/forum/link-forums/posting-a-sample-workbook.16/
  6. Debraj

    Prevent Adding Duplicate Row based by checking a coloum values

    Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column = 3 Then If Evaluate("Countif(c:c," & Target.Address & ")") > 1 Then MsgBox Target.Value & " is a duplicate entry. It will be removed.", vbExclamation, "Data Entry Editor"...
  7. Debraj

    Number Formating

    Did you tried.. Find & Replace "," to ""
  8. Debraj

    Range in a userform

    In List box, try to use Row Source Property like below
  9. Debraj

    Hyperlinks with Advanced Filters

    Actually not required in this case... Its just my habit to put "Error Handling" in case of "No Data Found in Filter or Special Cells"
  10. Debraj

    Hyperlinks with Advanced Filters

    Hi Sammyp.. Try this.. If Not rngCrit Is Nothing Then Sheet2.Range("RFPTable").AdvancedFilter _ Action:=xlFilterInPlace, _ CriteriaRange:=rngCrit 'CopyToRange:=Range("ExtractRFP"), Unique:=False Sheet1.Range("B8").CurrentRegion.Clear On Error Resume Next With...
  11. Debraj

    bullet chart

    Hey.. Welcomeback Kaushik.. I think. A simple Bar Chart will also works in this scenario.. with both series color transparent.
  12. Debraj

    Searching & matching data from a table

    Hi Aamir.. Try this.. =SUMIFS(OFFSET(Data!$G$2:$G$26,,MATCH($J2,Data!$H$1:$O$1,0)),Data!F$2:F$26,$G2,Data!G$2:G$26,$I2)
  13. Debraj

    Formatting

    Try this.. =INDEX('Horizontal '!$A$2:$E$26,COLUMN(A1),ROW(A1)) In Index function.. in place of ROW section use Column and vice versa for COLUMN Drag downward / right to fetch the recotrds.
  14. Debraj

    'Sort values' in 5 columns but same row not taking place.....

    any sample file to check .. why sort is not working..
  15. Debraj

    New to Excel and in need of a formula

    Hi karla.. Welcome to the forum.. Can you please share a sample worksheet to demonstrate.. what you actually wants..
  16. Debraj

    IF formula help

    Hi Tman.. Welcome to the forum.. Try this.. =MIN("12:00",Jun!G2)-MIN("10:24",Jun!G2) Dont forget to change the number format to Time.
  17. Debraj

    Debraj Dada 2K Post

    Thanks @Deepak , @ThrottleWorks & @vrunda .. for giving us chance to learn new challenges and solutions.. and @Faseeh & @Luke M .. good luck.. for sharing those opportunity equally between us.. :)
  18. Debraj

    Multipe match

    Welcome to the forum.. you can try this too.. =INDEX($F$6:$P$6,,MATCH($C7,OFFSET($F$6:$P$6,MATCH($B7,$F$7:$F$8,0),,1),0))
  19. Debraj

    Debraj Dada 2K Post

    @Hui Thanks for your wishes.. This forum would not reach to this benchmark.. if you are not here..
  20. Debraj

    Debraj Dada 2K Post

    Thanks shri.. Still in learning phase.. need lots of guidance.. keep guiding.. :)
  21. Debraj

    Help with the IF function

    Hi Shri.. If I says.. will I be wrong!!!:confused:
  22. Debraj

    Hi, Retrieve info with two variables

    Just for sharing purpose.. :) To avoid Ctrl + Shift + Enter.. the formula part which is rturning array output.. block that part with Index function.. It work great.. if someone is unaware of Ctrl + Shift + Enter =INDEX(B2:B15,INDEX(MATCH(1,(A2:A15="G23")*(D2:D15="R"),0),,))
  23. Debraj

    Open_explorer|wait|run subfunction/rest of macro

    Hi Karthik Thandapani there is lots other way to open an excel file.. by manual click.. try to search for Application.getopenfilename.. and set the opened sheet as TargetWorkbook.. set targetworkbook = application.getopenfilename(....) It will only goes to next line of code.. after...
  24. Debraj

    Debraj Dada 2K Post

    Hey Somu.. Thanks for the appreciation.. and sorry for not able to contribute much those days.. but glad that, you are there to fill those gaps.. thanks a lot..
  25. Debraj

    Save a customized user form as a default user form.

    I have created a customized user form.. nothing just company logo at top right and theme color for form.. and a company hyperlink. Saving the frm file.. and import everytime is not a big task.. but.. just like sheet1 / book1.. is there any default location to save the frm file.. So that...
Back
Top