Displaying #Value and I cannot find the root of the problem

DanielBellfield

New Member
Joined
Mar 16, 2012
Messages
36
Good afternoon all,

Looking for some help on the below. Basically i am trying to get the cell to be blank if there is no date in another coloum. It works fine, but if the cell above it is also blank it displays #value. The dates change accoarding to month and therefore i want to keep the formula the same but edit the dates.

Heres where i'm upto.

Order Intake
Month:
Daily Target:17500
Daily TotalRunning TotalDaily Average Running Total
Monday=IF(C5="","",C5)=IF(B5=0," ",$B$3)
Tuesday=IF(C6="","",C6+D5)=IF(B6=0," ",$B$3+E5)
Wednesday=IF(C7="","",C7)=IF(B7=0," ",$B$3+E6)
Thursday=IF(C8="","",C8+D7)=IF(B8=0," ",$B$3+E7)
Friday42552=IF(C9="","",C9)=IF(B9=0," ",$B$3+E8)

<tbody>
</tbody>

Help please!

Thank you.
Dan
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
The reason it's displaying value is because "" is a string and not automatically calculated to 0 as one would inherently assume. I assume it's happening in D6, D8 and E6:E9.

You can fix it by changing D6 and D8 to =IF(C6="","",IF(D5="",C6,C6+D5)) and =IF(C8="","",IF(D7="",C8,C8+D7))
I'm not sure why you have your E column checking for 0 and inserting spaces, but you can fix your #value problem by editing the formulas the same way, just add the nested IF statement to check if the column above is blank

or you can just change all your " "s and ""s to 0s, and then it'll work too

I realize I was mistaken, It's not the ""s that are the problem it's where you're inputting " ", "" is automatically calculated as 0, if you change your " "s to ""s it will fix your problem. However your running total will be weird if there no data on an earlier day in the week, for instance there are numbers for Monday and Tuesday but not Wednesday, at that point Thursday won't factor in Monday and Tuesdays numbers... if that makes sense.

I'm not sure if that's intended, but if it's not you can remove the IFs in E and replace them with just =B$3$ + the cell above and you won't have that problem.
 
Last edited:
Upvote 0
Sorry guys the cell in question is displayed in RED

ABCDE
1Order Intake
2Month:
3Daily Target:17500
4Daily TotalRunning TotalDaily Average Running Total
5Monday01/08/2016=IF(C5="","",C5)=IF(B5=0," ",$B$3)
6Tuesday02/08/2016=IF(C6="","",C6+D5)=IF(B6=0," ",$B$3+E5)
7Wednesday03/08/2016=IF(C7="","",C7)=IF(B7=0," ",$B$3+E6)
8Thursday04/08/2016=IF(C8="","",C8+D7)=IF(B8=0," ",$B$3+E7)
9Friday05/08/2016=IF(C9="","",C9)=IF(B9=0," ",$B$3+E8)

<tbody>
</tbody>

Any Ideas why this would be displaying as #VALUE
 
Upvote 0
Putting in your data as you have it written here had the E column displaying

17500,35000,52500,70000,and then 87500 for me.
 
Upvote 0
Put =IF(B5=0," ",SUM($B$3)) in E5 and =IF(B6=0," ",SUM($B$3,E5)) in E6, then paste E6 through E9
 
Upvote 0
Anywhere you have

Anycell+Anyothercell

change it to

SUM(Anycell, Anyothercell)



Text+Number = #Value! error

the SUM function will ignore the text.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,577
Messages
6,131,511
Members
449,653
Latest member
andz

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