IF FORMULA ISSUE
- 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
Hello Everyone,
I have the following set of information, And I need a formula so that if the "Description" Column is "null" then the respective value on the "ROW" column needs to be "null" or blank as well.
Any ideas?
Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Add a formula tool and select the ROW field to update.
The formula is then:
if isnull([Description] then "" else [ROW] endif
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @malcorr,
Set your column in your Formula tool to 'Row' then use the formula IF IsNull([Description]) THEN Null() ELSE [Row] ENDIF
If you want it to be blank instead, substitute Null() with ""
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @malcorr
You can add a "Formula" tool and from the drop down select "Row" and write the formula as following:
if IsNull([Description]) then null() else [Row] endif
It is going to replace the Row value with null whenever the description is null w/o creating a new column. Hope this helps.
