SOLVED
If statement, values match another column
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
padawanRZ
6 - Meteoroid
‎01-11-2024
01:01 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello,
This might be straight forward but i'm not getting the expected value. The formula yields zero for the name value when i try:
if [Column_Name] = "Name" then [PCT_NonNull]==[Count_Content Name]
else [Column_Name]
endif
From:
Content Name | Column_Name | Count_Null | Count_NonNull | PCT_NonNull | Count_Content Name |
abc | Business Description | 26 | 195 | 0.8824 | 221 |
abc | Name | 0 | 221 | 1 | 221 |
def | Name | 0 | 443 | 1 | 443 |
def | PCI-DSS | 331 | 112 | 0.2528 | 443 |
ghi | Name | 0 | 448 | 1 | 448 |
ghi | PCI-DSS | 53 | 395 | 0.8817 | 448 |
To:
Content Name | Column_Name | Count_Null | Count_NonNull | PCT_NonNull | Count_Content Name |
abc | Business Description | 26 | 195 | 0.8824 | 221 |
abc | Name | 0 | 221 | 221 | 221 |
def | Name | 0 | 443 | 443 | 443 |
def | PCI-DSS | 331 | 112 | 0.2528 | 443 |
ghi | Name | 0 | 448 | 448 | 448 |
ghi | PCI-DSS | 53 | 395 | 0.8817 | 448
|
Solved! Go to Solution.
Labels:
- Labels:
- Expression
1 REPLY 1
nagakavyasri
12 - Quasar
‎01-11-2024
01:25 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
