Isnumber funtion

uswyne

Board Regular
Joined
Jul 27, 2017
Messages
78
Office Version
  1. 2019
  2. 2016
  3. 2013
  4. 2010
Platform
  1. Windows
[TABLE="width: 500"]
<tbody>[TR]
[TD]Date[/TD]
[TD]Amount[/TD]
[TD]Paid Date[/TD]
[/TR]
[TR]
[TD]1/1/18[/TD]
[TD]1000[/TD]
[TD]I want the B column figure in this cell when I entered date in A1.[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Please help
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Maybe:
Code:
=IF(ISNUMBER(A1),B1,"")


Thanks for your prompt reply.
Its working but disturbing in other cell calculation.

[TABLE="width: 500"]
<tbody>[TR]
[TD]Date[/TD]
[TD]Amount[/TD]
[TD]Paid amount[/TD]
[TD]Outstanding Balance[/TD]
[TD]formula use in D column[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]1000[/TD]
[TD][/TD]
[TD]1000[/TD]
[TD]=iferror(B3-C3,"")[/TD]
[/TR]
[TR]
[TD]1/1/18[/TD]
[TD]1000[/TD]
[TD]1000[/TD]
[TD]--[/TD]
[TD]=iferror(B3-C3,"")[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
but when i used formula given by you it works in Coloumn C but coloumn D shows blank and this effect to calculate my total outstanding amount.

kindly look into this matter.

thanks
****** id="cke_pastebin" style="position: absolute; top: 159.815px; width: 1px; height: 1px; overflow: hidden; left: -1000px;">[TABLE="width: 500"]
<tbody>[TR]
[TD]=iferror(B1-B2,""[/TD]
[/TR]
</tbody>[/TABLE]
</body>
 
Upvote 0
A SumIfs formula returns ordinarily a number, not an error, unless the sum range consists solely of error values.
 
Upvote 0

Forum statistics

Threads
1,225,635
Messages
6,186,128
Members
453,340
Latest member
Stu61

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