enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Allow find function on protected sheet...? - MrExcel

    www.mrexcel.com/board/threads/allow-find-function-on-protected-sheet.498602

    Click to expand... This is what you need to do in order to use xtrl+f to work at protected sheets: - Unprotect the sheet, sellect the cells in the sheet which you would search, right click, format cells, then go to protection tab. in there make sure the hidden box is unchecked, after saving and protecting the sheet, it should work, it did for ...

  3. Find function not working? | MrExcel Message Board

    www.mrexcel.com/board/threads/find-function-not-working.369826

    In the Find and Replace box, "Match entire cell contents" was not checked. Checking it and un-checking it seemed to work. File explorer found the file with an authors full name "Mair, B. J. and....". Using find and Within: Workbook did not find the worksheet. In the worksheet with the entry, it did not find it even though clearly seen.

  4. Find text string Across Multiple Cells in a Row - MrExcel

    www.mrexcel.com/board/threads/find-text-string-across-multiple-cells-in-a-row...

    Hi, I want to see if a text string is contained in any the text in any cell in a row i tried : =FIND("gift",A3:U3,1) Did not work. I tried defining a name for the range and putting it where there range is in the formula, also did not work. Any ideas for doing this in a formula ? I feel like...

  5. MIN function but ignore #N/A's | MrExcel Message Board

    www.mrexcel.com/board/threads/min-function-but-ignore-n-as.237718

    MrExcel MVP. Joined. Feb 14, 2002. Messages. 85,210. Dec 10, 2006. #2. I need to use the MIN function on a range of cells, but I need to ignore the "#N/A" values. (otherwise one ofthe N/A's gets sent back as the min). Is there a way to do this?

  6. .Find ignore spaces | MrExcel Message Board

    www.mrexcel.com/board/threads/find-ignore-spaces.908017

    Set searchRange = Range("A1:A25") Set res = searchRange.Find(What:=searchSequence, LookIn:=xlValues, lookat:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext) I have specified the xlWhole, because I want it to find an exact match (it was messed up without it!), but I want it to ignore spaces when searching.

  7. VBA Error Handling when dealing with Cells.Find - MrExcel

    www.mrexcel.com/board/threads/vba-error-handling-when-dealing-with-cells-find...

    I'm trying to use a find method to look up a variable in a 2000+ list of data. I'm currently using this code : I need to see if the variable strAdLink1 exists on sheet AdLinks and then to return a Yes/No in the relevant cell on sheet XML Data. Code: For a = 3 To lngXMLLastRow. strAdLink1 = Cells(a, 1).Value. For b = 1 To lngLnkLastRow.

  8. Looking for a specific sum within a range of numbers... - MrExcel

    www.mrexcel.com/board/threads/looking-for-a-specific-sum-within-a-range-of...

    7. In "Subject to the Constants" area, click the Add button and then enter: B1: B5 = Bin. 8. Click OK. Cells B1, B3, B4 should have a 1 in them, cells B2 and B5 will show zero, cell B7 will show 221.11. After clicking "OK" (step 8 above) the Solver Results dialog box will appear - click OK to keep the results.

  9. using MIN then finding the next smallest - MrExcel

    www.mrexcel.com/board/threads/using-min-then-finding-the-next-smallest.45206

    I use the MIN function to find the smallest number.....1 Well I need a formula that will then in turn find the next smallest number (excluding the number that the function MIN found. Thank you very much, :D Jeffery

  10. excel find function | MrExcel Message Board

    www.mrexcel.com/board/threads/excel-find-function.670500

    i have 2 columns of data where i want to find matches for. For example, one cell has football2345soccer and my other cell has 2345 and i want a formula which will tell me that 2345 is also contained in the cell which contains the following word/number football2345soccer. Thanks

  11. VBA Excel find function for currency formatted cells

    www.mrexcel.com/board/threads/vba-excel-find-function-for-currency-formatted...

    Re: VBA Excel find function for currency formatted cells - Please advise Thank you Roderick for your reply. I adjusted InStr(ActiveCell.NumberFormat, Chr(128)) to my previous searching code and it found the euro symbol !!!(i was excited) but my macro only works if i previously select manually the column that i want to search (In my case i need column H).