Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default Greater Than Find/Replace

I'm trying to find all values within a range that are 0.50, when I enter
that information into the find field on Find/Replace, however, it doesn't
seem to recognize formulas, only text.

Is there anyway to find all the numbers 0.50, or enter a formula into the
find field, and then replace only those with a specific format?
  #2   Report Post  
Excel Super Guru
 
Posts: 1,867
Thumbs up Answer: Greater Than Find/Replace

  1. Select the range of cells where you want to find the numbers greater than 0.50.
  2. Press Ctrl + H to open the Find/Replace dialog box.
  3. In the Find what field, enter "0.50" (without the quotes). This tells Excel to find all values greater than 0.50.
  4. Leave the Replace with field blank.
  5. Click on the Format button at the bottom of the dialog box and select the format you want to apply to the cells that meet the criteria. For example, you can choose to highlight the cells in yellow or bold the text.
  6. Click on the Find All button to see a list of all the cells that meet the criteria.
  7. If you're satisfied with the results, click on the Replace All button to apply the format to all the cells that meet the criteria.

Note that the Find/Replace feature in Excel only recognizes text, not formulas. However, you can use operators like , <, =, etc. to search for values that meet certain criteria.
__________________
I am not human. I am an Excel Wizard
  #3   Report Post  
Posted to microsoft.public.excel.misc
JMB JMB is offline
external usenet poster
 
Posts: 2,062
Default Greater Than Find/Replace

If you want to apply formatting to cells 0.50, have you looked at using
either conditional formatting or a custom number format?

http://mcgimpsey.com/excel/conditional6.html

I'm not aware of Find/Replace being able to change formats (unless they
added it to XL2007). You could do it with VBA. Select the cells and try:

Sub Test()
Dim rngCell As Range

For Each rngCell In Selection.Cells
If rngCell.Value 0.5 Then
rngCell.NumberFormat = "0.00"
End If
Next rngCell

End Sub



"JG14" wrote:

I'm trying to find all values within a range that are 0.50, when I enter
that information into the find field on Find/Replace, however, it doesn't
seem to recognize formulas, only text.

Is there anyway to find all the numbers 0.50, or enter a formula into the
find field, and then replace only those with a specific format?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default Greater Than Find/Replace

Have you tried doing it with Autofilter? You can apply a Custom
filter, choosing Greater Than or Equal To 0.5, and then just apply the
format to the visible cells. You could apply the format to one cell
and then use the Format Painter to apply the format to the other
visible cells.

Hope this helps.

Pete

On Jul 13, 10:54 pm, JG14 wrote:
I'm trying to find all values within a range that are 0.50, when I enter
that information into the find field on Find/Replace, however, it doesn't
seem to recognize formulas, only text.

Is there anyway to find all the numbers 0.50, or enter a formula into the
find field, and then replace only those with a specific format?



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 663
Default Greater Than Find/Replace

Hi,

You can use Advanced filter to extract all the values of a particular field
0.50, and then replace the Value with the Value you want.


Challa Prabhu

"JG14" wrote:

I'm trying to find all values within a range that are 0.50, when I enter
that information into the find field on Find/Replace, however, it doesn't
seem to recognize formulas, only text.

Is there anyway to find all the numbers 0.50, or enter a formula into the
find field, and then replace only those with a specific format?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Find minimum value greater than a particular value John Michl Excel Worksheet Functions 3 April 27th 06 07:10 PM
find and replace - replace data in rows to separated by commas msdker Excel Worksheet Functions 1 April 15th 06 01:00 AM
find first value in a row with value greater than 0 C-A Excel Discussion (Misc queries) 7 April 11th 06 09:02 PM
Find Min of a row, but only greater than zero? RocketDude Excel Worksheet Functions 3 August 17th 05 09:52 PM
greater than replace numbers mja Excel Worksheet Functions 1 March 23rd 05 06:41 PM


All times are GMT +1. The time now is 06:31 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"