SOLVED
Categorize data
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
Belletmns
8 - Asteroid
‎02-15-2021
07:04 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi Team,
Seeking for your help. I need to categorize the data based on the below condition.
For example: If there is data under Column M &N the type of schedule falls on "Schedule A"
Conditions:
Column M | Column N | Column O | Column P | Type of Schedule |
Data Here | Data Here | Schedule A | ||
Data Here | Schedule A | |||
Data Here | Schedule A | |||
Data Here | Data Here | Schedule B | ||
Data Here | Schedule B | |||
Data Here | Schedule B | |||
Data Here | Data Here | Data Here | Data Here | Schedule AB |
Data Here | Data Here | Schedule AB | ||
Data Here | Data Here | Schedule AB | ||
Data Here | Data Here | Data Here | Schedule AB | |
Data Here | Data Here | Data Here | Schedule AB | |
Data Here | Data Here | Data Here | Schedule AB | |
Data Here | Data Here | Data Here | Schedule AB |
Thanks in advance!
Solved! Go to Solution.
Labels:
- Labels:
- Datasets
- Preparation
- Transformation
4 REPLIES 4
NexBK
7 - Meteor
‎02-15-2021
07:29 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Tyro_abc
11 - Bolide
‎02-15-2021
07:36 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
HI
you can use the below formula to derive category
if (
replace([Column M]+[Column N],' ','')!='' and
replace([Column O]+[Column P],' ','') ='') then 'Schedule A'
elseif (replace([Column M]+[Column N],' ','')='' and
replace([Column O]+[Column P],' ','') !='' ) then 'Schedule B'
else 'Schedule AB' endif
grazitti_sapna
17 - Castor
‎02-15-2021
09:13 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @Belletmns ,
Give this a try.
If this helps kindly mark this post as solution and like.
Thanks.
Sapna Gupta
‎02-16-2021
12:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you!
