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

    How to sum a range between certain days of month?

    Hui, Yeah, I realised that, but I added it to try and make it clear after Oscar's post as his confused the issue I felt and you (seemed to) support him by offering a different solution. I tried to clarify it, seems I failed :)
  2. X

    How to sum a range between certain days of month?

    <<If entered exactly as above, this only returns a #VALUE! >> Did you adjust date_range and value_range to your ranges, and size them the same as A3:A80?
  3. X

    How to sum a range between certain days of month?

    <<If you are using dates you can't use "2010-10-01" as that is text>> No, but you can use --"2010-10-01" as I showed.
  4. X

    How to sum a range between certain days of month?

    Use =SUMPRODUCT(--(A3:A80="D"),--(date_range>=--"2010-10-01"),--(date_range<--"2010-11-01"),value_range)
  5. X

    How to sum a range between certain days of month?

    Something along the lines of =SUMIF(date_range,">=2010-10-01",value_range)-SUMIF(date_range,">=2010-11-01",value_range)
  6. X

    How to concatenate text strings that contain quotes

    Try this "<Link ((<LEV(""Customers"", ""Lev0,Customers"")) AND ( <IDESC("""&A1&""")))"
  7. X

    need help..index and match..

    I don't get a #NUM! in either case, I get blank both times.
  8. X

    importing data from pdf file..

    I guess it may be possible to extract from a PDF in VBA, but I am guessing it is hard work. I use a third party tool, http://www.investintech.com/able2extract.html, and use that output.
  9. X

    need help..index and match..

    My example shows all results in adjacent cells if you drag the formula across. I would suggest that this is the best way to do it.
  10. X

    Autofill when Using Data Validation

    Not with Data Validation. It can be done with a combobox, but that is a less friendly control in other words, so my advice is regrettably to live with it.
  11. X

    need help..index and match..

    Try using this array formula =IF(ISERROR(SMALL(IF($B$1:$B$20="SATURDAY",ROW($B$1:$B$20)),COLUMN(A$1))),"", INDEX($A$1:$A$20,SMALL(IF($B$1:$B$20="SATURDAY",ROW($B$1:$B$20)),COLUMN(A$1)))) copy across as many as might be needed. This is an array formula. This means that you use...
  12. X

    vlookup

    ARe you sure that the value is exactly 0.451,, either value, it may have other decimal places that are not showing.
  13. X

    Recommended Developer For Hire?

    Quite honestly, I have watched you spraying questions all over the place, at many forums,and it is my considered opinion that you would be a nightmare to work with. I would suggest that you sit down in a dark room and properly consider what it is you are trying to do, what your business drivers...
  14. X

    I need a Formula for Conditional Formatting

    Doesn't this do it =D5=MIN($D5,$H5,$L5,$P5,$T5)
  15. X

    Worksheet Calculate Sub (Monitoring Multiple Events)

    BTW, why are you using COUNTIF. I would use =--($Z$1=1) etc
  16. X

    Worksheet Calculate Sub (Monitoring Multiple Events)

    <br /> Private Sub Worksheet_Calculate()<br /> Dim cell As Range</p> <p> Application.EnableEvents = False</p> <p> For Each cell In Range("Z38:Z63")</p> <p> If cell.Value2 = 1 Then</p> <p&#62...
  17. X

    Index and Match Function

    It might do, if we could actually see anything other than the question.
  18. X

    I need a Formula for Conditional Formatting

    Try =B5=MAX(D5,H5,L5,P5,T5) obviously it cannot highlight B5, but it won't be a problem to add the C F to too many cells.
  19. X

    Faster Calculations (By Making VB Code Shorter)

    Absolutely not! You could turn off screenupdating and set calculation to manual at the start and reset at the end as well as not selecting.
  20. X

    Ranking a column of averages from 1st to 24th

    Why not just use =LARGE(ROUNDDOWN('2010'!$D$3:$D$5+'2010'!$D$8:$D$13,0),ROW(A1)) and copy down
  21. X

    IF formula with maximum value

    Is that you want =IF(SUM($B2:B2)>9000,0,IF(9000*8.6%>SUM($B2:B2)*8.6%,B2*8.6%,9000*8.6%-SUM($B2:B2)*8.6%))
  22. X

    Challenging Custom Format or Conditional Format

    I you do use Hui's suggestion, be aware that the cells contain strings thereon not numbers, so you cannot do math with the value in that cell.
  23. X

    Calculating the project manday details

    You need to explain that data in more detail, and the correlation between those two worksheets.
  24. X

    Summing different number of cells

    What determines when you add a SUM? If it is a value in another column, just use the SUBTOTAL function in Excel.
  25. X

    Keep zebra strips proper look when sorting the table

    Just saying it doesn't work doesn't help much. You need to post a workbook, because you have clearly done something wrong but you are not able to express it in a way that we can resolve.
Back
Top