Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by greengo204

  1. greengo204

    Excel 2007 - INDEX/MATCH/VLOOKUP Using Multiple Searches or Wildcards

    Hi, Could someone please assist me with the below: I have two tables 1.) Table A - Which contains data that changes regularly 2.) Mapping Table - Which has a static table that will hold static data used in a lookup formula to allocate segments (groups) to table A My end goal is have a...
  2. greengo204

    Excel 2007: VLOOKUP Based on a Value Appearing Within A Cell

    Skipvought: Yes you right, I think I need to improve expressing my requirements Lionelhill: 99.9% of the time I would use a unique key or request the DBAs to provide me with something unique. In this situation I have no option for this due to the nature of the source of the data (bank...
  3. greengo204

    Excel 2007: VLOOKUP Based on a Value Appearing Within A Cell

    SkipVought Thanks for your advice on this. The text to column method does work but I was hoping to find a formula based method that would work. Suppose my question is, is it possible to complete a vlookup (or alternative) based on a string appearing in the target range?: e.g. tableA: NAME...
  4. greengo204

    Excel 2007: VLOOKUP Based on a Value Appearing Within A Cell

    Hi, I have 2 tables both with a field 'COMPANY_NAME/CUSTOMER_NAME' but they appear in a different format on each table e.g. tableA COMPANY_NAME/CUSTOMER_NAME AMOUNT Mr John Smith 100 Doctor Andrew Brown 500 Microsoft...
  5. greengo204

    Excel 2007 Compatibility Mode

    Just wondering if any other people have been experiencing disappearing cells when using Excel 2007 to open Excel 2003 files? When scrolling through various different spreadsheets cell visability dissapears for some cells. Just to be clear its just the visibility that is hidden, when you click...
  6. greengo204

    Excel 2003 - Pivot Tables & Protection

    old post but found some useful VBA code thats solved my problems: http://www.contextures.com/xlPivot12.html
  7. greengo204

    Excel 2007 - Copy & Paste Only Fill Colur

    xlhelp: Thanks thats what i was looking for. Petermoran: Cheers i will look into that plugin as im sure i may have other uses for it. Regards,
  8. greengo204

    Excel 2007 - Copy & Paste Only Fill Colur

    I've tried all three 'IS' functions unsuccessfully, the 'ISREF' funtions conditional formatting always returned TRUE? I've found a macro which is doing the job, but cant help thinking theres an easier method... Macro...
  9. greengo204

    Excel 2007 - Copy & Paste Only Fill Colur

    fair point. i am trying to conditionally format a cell (fill colour) if the cell contains any formula. any suggestions?
  10. greengo204

    Excel 2007 - Copy & Paste Only Fill Colur

    Possible i have been attempting that method unsuccessfully. Additional info: I am trying to fill a cell conditionally with colour is the cell contains a formula. I have been using a custom function (VBA) to identify if the relevant cell has a formula and then coditionally format the cell if...
  11. greengo204

    Excel 2007 - Copy & Paste Only Fill Colur

    Not sure if this is possible but is there a way to copy any paste just the fill colour of a cell? I've tried "copy & paste special > formats" but that paste all the cells formatting. I am specifically looking for just the fill colour. If this can't be done with the usual features i would be...
  12. greengo204

    Crystal Reports8.5: Displaying multiple parameters

    HI, For displaying Multiple Discrete values separated by a comma, i generally use the below formula: whileprintingrecords; stringvar Output:=""; numbervar Counter; For Counter := 1 to ubound({?MyNumericParameter}) do( Output:= Output& totext({?MyNumericParameter}[Counter],0,"")& "," )...
  13. greengo204

    Crystal 8.5: SQL Expression: ORDER BY

    Was not entirely sure what you suggestion meant as i would be running this report for a large amount of customers so i was a bit unsure how to pass the MAX's to limit the data in the report. I have found a SQL solution though which is working in the Crosstab: ( SELECT...
  14. greengo204

    Need help with a SUM

    if your parameters included in yor record selction criteria then the only invoices for the year will be returned. So if you add a Grand Total summary (Insert>Grand Total) on the {Invoice.TotalGst} then that should return what you are looking for.

Part and Inventory Search

Back
Top