Formula to nullify value

amittheexcel

Board Regular
Joined
Dec 17, 2013
Messages
50
Hi There,

I need help to generate excel formula for below table.I need to put comments "value Zero" if my column"A" value nullify. below is the table. Please help me to get formula for this.

[TABLE="width: 500"]
<tbody>[TR]
[TD]value[/TD]
[TD]Abs Forumal[/TD]
[TD]Comments[/TD]
[/TR]
[TR]
[TD]-400[/TD]
[TD]400[/TD]
[TD]Value zero for 400[/TD]
[/TR]
[TR]
[TD]-400[/TD]
[TD]400[/TD]
[TD]Value zero for 400[/TD]
[/TR]
[TR]
[TD]400[/TD]
[TD]400[/TD]
[TD]Value zero for 400[/TD]
[/TR]
[TR]
[TD]400[/TD]
[TD]400[/TD]
[TD]Value zero for 400[/TD]
[/TR]
[TR]
[TD]500[/TD]
[TD]500[/TD]
[TD]need to check[/TD]
[/TR]
[TR]
[TD]-500[/TD]
[TD]500[/TD]
[TD]need to check[/TD]
[/TR]
[TR]
[TD]-500[/TD]
[TD]500[/TD]
[TD]need to check[/TD]
[/TR]
[TR]
[TD]-600[/TD]
[TD]600[/TD]
[TD]need to check[/TD]
[/TR]
[TR]
[TD]-600[/TD]
[TD]600[/TD]
[TD]need to check[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
something like

=IF(ABS(Cell)<>400,"Need To Check","0")
 
Upvote 0
Hi,

I want to check all rows, like for 400 & 500 if value is coming zero, it shows 0 to comments.

Can we give any other criteria other than 400?

=IF(ABS(Cell)<>400,"Need To Check","0")
 
Upvote 0
you can build additional IF statements, obviously I have used cell as to one you are checking and haven't specified where you place the formula

so =IF(ABS(A1)<>400,"Need to Check",0)
 
Upvote 0
Hi, This is not something which i want. Basically I want to put comments as "0" if column "A" value nullify. For ex - For 400 there 4 rows with two 400 and two -400. which are nullify. howver for other rows we have 500, -500 & 500 which is not nullify the value to zero. so i want to build a formula in such a way that if my column "A" values gets nullify we should get comment as "0" else "needs to check". Hope you can help me now.
 
Upvote 0

Forum statistics

Threads
1,224,819
Messages
6,181,153
Members
453,021
Latest member
Justyna P

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top