Null value in dynamic range

dmheller

Board Regular
Joined
May 26, 2017
Messages
142
Office Version
  1. 365
All,
I have a data set I get from DCS system. Sometime it goes down and shows "Null"
I have a dynamic range in the name manager that works but am having problems with the null
in column z
=if(and(isnumber(g5),$Z$1=TURE),O5,NA())
to explain, G5 is a date and It goes down the column so far.
Z1 is true or false based on a check box
O5 is data that goes down so far.
the problem, when O has series of null values for 50 data points, my data then has It and my graph Is off. how can I make null a number?
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Yoy can select cells, then ctrl+f and replace null by 0.

This macro would do it as well

Code:
Sub NullReplace()
On Error Resume Next
 Cells.Select
Selection.Replace What:="null", Replacement:="0"
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,473
Messages
6,125,018
Members
449,203
Latest member
tungnmqn90

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