Formula to check whether the column has value or not
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Deem_11
5 - Atom
‎04-03-2024
06:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I have column that is named Category and it contains Accruals and Actual amounts,
and I have applied some calculations based on this column
I extract the data on a monthly basis, and some months may contain Accruals & Actuals or it may contain only Accruals with no Actual amount, this leads to an error that the calculation is missing an Actual number.
Is there any formula that i can apply it to check if the column does not contain an Actual number then it will replace it with 0.
Labels:
- Labels:
- Expression
- Help
- Workflow
1 REPLY 1
cjaneczko
13 - Pulsar
‎04-03-2024
06:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
You can use the following.
if REGEX_Match([Field1], "\d+") then [Field1] else 0 endif
