Multi-row formula tool error
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I am trying to replace all the [Null] values in a column with the only number in the column using the multi-row formula tool, but the values are not updating. How can I update all Null values with my single number in the column?
IF ISNULL([Value])
THEN [Row+1: Value]
ELSE [Value] ENDIF
Solved! Go to Solution.
- Labels:
- Custom Tools
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Sort the single value to the top before the multi row formula. Then use the below formula:
IF ISNULL([Value])
THEN [Row-1: Value]
ELSE [Value] ENDIF
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
use a filter tool - filter for the non-null value. append the value back to datastream. This isn't a situation where you'd use a multi-row formula.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@NBPSE
Multi-Row Formula tool can only do downward calculation. so we have reverse the dataset first to bring the number on top.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This worked, thank you!
