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

find/replace with *formula values*

jneiblas

New Member
I have multiple formulas on the sheet, many of which return a value of 0
I want to delete all the 0's from my sheet (or all the formulas that return that value)
I tried to enter "0" into find and replace but it does not work because technically the cell value is not 0
Help?
 
Post a sample file showing the issue. 8-10 records should be sufficient. No pictures as they can not be manipulated.
 
I have multiple formulas on the sheet, many of which return a value of 0
I want to delete all the 0's from my sheet (or all the formulas that return that value)
I tried to enter "0" into find and replace but it does not work because technically the cell value is not 0
Help?
The normal practice is not to destroy the formulas but rather to modify them to return "" rather than 0. Instead of
= FUNCTION(data)
one might have
= IF(data<>"", FUNCTION(data), "")
The actual test depends upon the circumstances.
 
jneiblas

Another way is to format all the cells that you don't want result with zeros with custom formatting
Simple example 0; -0;; @ or not show zeros in the result in hours hh:mm;;""

Decio
 
I tried to enter "0" into find and replace but it does not work because technically the cell value is not 0
Miss out the quote marks and look in Values:
80087

You should also tick the Match entire cell contents box (I forgot to in the screen shot above).
click on Find All, then press Ctrl + A on the keyboard to select all found cells, then close the dialogue box. The selected cells remain selected. Then just press Delete on the keyboard.
 
Back
Top