Recent content by qafself

  1. qafself

    How to consolidate two excel work sheets of the same size?

    What do you mean by consolidate? An example would help.
  2. qafself

    Lookup and concatenation

    I suspect that the problem is that the data is not sorted. You probably need to use VLOOKUP, using the parameter false. As an aside you do not need to use the concatenate function - you can just put =Value1&value2&value3..... that said, it's not clear how your data is arranged - suggest you...
  3. qafself

    Finding max value from one column, from cells determined by value in another column

    can you rearrange the data so that names go down and grades go across? That would make it simple
  4. qafself

    Excel - Data Validation - No drop-down

    In that case I suggest that you copy all data from sheet, delete sheet and create a new one - excel does go funny on you sometimes and if a particular sheet is problematical the best solution is to bin it.
  5. qafself

    Excel - Data Validation - No drop-down

    Suggest you remove the data validation settings on that sheet and redo them it won't take long if you tick the check box for apply this to all cells with the same seting.
  6. qafself

    CountIF

    Yes - you're right, retirement is sweet -I get my bus pass this year and a bit more pension!
  7. qafself

    CountIF

    No Problem Oddpro - thanks for letting me know you are now sorted out. Brian - you need more practice with SUMPRODUCT - I seem to remember I introduced you to the beauties of it several years ago........
  8. qafself

    CountIF

    see attached
  9. qafself

    CountIF

    If you are using 2007 you could use COUNTIFS instead of SUMPRODUCT
  10. qafself

    CountIF

    How about something like this in summarised!B2 =SUMPRODUCT(--(Data!$B$2:$B$133>=Summarised!$B$1)*(Data!$B$2:$B$133<Summarised!$C$1)*(Data!$C$2:$C$133=A2)) This sums the occurances where the date is greater than or equal to the date in the col head and the date is less than the col head of the...
  11. qafself

    CountIF

    Check out SUMPRODUCT http://www.xldynamic.com/source/xld.SUMPRODUCT.html
  12. qafself

    Highlight whole row as cursor moves

    You could use conditional formatting to colour alternate rows - make reading across much easier
  13. qafself

    Hide rows if they do not contain a "Y".

    Why not just filter on the letter "Y"
  14. qafself

    Adding formula help

    Use SUMIF - Excel help will explain the detail
  15. qafself

    round currancy, but show .00

    Yes, set the currency to two decimal places and then use round(cell ref,0) to get rid of pence. Note - using round means that you are changing the value stored, but when the currency is set to zero decimal places, the value stored is the calculated value not the displayed value. If you are...
Top Bottom