poleary2000
Active Member
- Joined
- Apr 1, 2002
- Messages
- 354
I have the following equation:
=IF('Activity List'!H6>0,'Activity List'!H6,"")
It is copied down for 20k records. However, multiple rows were also manually deleted. There may have been 1k rows deleted. Thus, the equations look like this:
=IF('Activity List'!H6>0,'Activity List'!H6,"")
=IF('Activity List'!H6>0,'Activity List'!H7,"")
=IF('Activity List'!H6>0,'Activity List'!H10,"")
=IF('Activity List'!H6>0,'Activity List'!H11,"")
I need to change the equation to:
=IF(ISNUMBER('Activity List'!H6)=TRUE,'Activity List'!H6,"")
That is easy, but I can't just fill it down because of all the rows the person manually deleted. So, I'd like to replace the equation -- but can't figure out how to do it. Any thoughts?
=IF('Activity List'!H6>0,'Activity List'!H6,"")
It is copied down for 20k records. However, multiple rows were also manually deleted. There may have been 1k rows deleted. Thus, the equations look like this:
=IF('Activity List'!H6>0,'Activity List'!H6,"")
=IF('Activity List'!H6>0,'Activity List'!H7,"")
=IF('Activity List'!H6>0,'Activity List'!H10,"")
=IF('Activity List'!H6>0,'Activity List'!H11,"")
I need to change the equation to:
=IF(ISNUMBER('Activity List'!H6)=TRUE,'Activity List'!H6,"")
That is easy, but I can't just fill it down because of all the rows the person manually deleted. So, I'd like to replace the equation -- but can't figure out how to do it. Any thoughts?