Hide total till number input

oscarff

New Member
Joined
Jun 8, 2022
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hello I have a question, We have a formula that would give us the total after the first box had been entered example

box a1 is empty and so is box b1
we enter in a number in a1 let say 100 when when we hit enter or tab it would auto add 750 and show the result in b1
when I look at the old sheet and click on box b1 its showing -SUM(a1+750)
the problem is that before we input numbers in a1 its showing the 750 even is a1 is empty and we need to kepp the 750 hidden till a number is input in a1
Please help i have spent a few hours trying to figure this out
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Try this..

In B1, use this formula..

=IF(ISBLANK(A1),"",A1+750)
 
Upvote 0
I tested it out and I got an error please see attached image
Capture.PNG
 
Upvote 0
You are missing a comma after the " "
 
Upvote 0
So I think I broke it more , I need some major help soo the fist pic is what I have and the second pic shows it gives me the calculation , in the third pic it shows the VALUE error the problem is i have this calculation copied to about 100 cell since we update this sheet every hour and it need to calculate but I need to not see the value error and I need it to be blank till we input numbers , I will I could upload a video of it working before the new guy save over the original copy.
1.PNG
2.PNG
3.PNG
 
Upvote 0
Try
Excel Formula:
if(A1="","",A1+750)
if(b1="","",B1+C1)
if(D1="","",E1-D1)
 
Upvote 0

Forum statistics

Threads
1,214,383
Messages
6,119,198
Members
448,874
Latest member
Lancelots

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