SOLUCIONADO
Categorize data
Opções
- Inscrever-se no RSS Feed
- Marcar tópico como novo
- Marcar tópico como lido
- Flutuar este Tópico do usuário atual
- Marcar como favorito
- Inscrever-se
- Emudecer
- Versão para impressão
Belletmns
Asteroide
02-15-2021
07:04 PM
- Marcar como novo
- Marcar como favorito
- Inscrever-se
- Emudecer
- Inscrever-se no RSS Feed
- Realçar
- Imprimir
- Notificar o moderador
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!
Solucionado! Ir para Solução.
Rótulos:
- Rótulos:
- Datasets
- Preparation
- Transformation
4 RESPOSTAS 4
NexBK
Meteoro
02-15-2021
07:29 PM
- Marcar como novo
- Marcar como favorito
- Inscrever-se
- Emudecer
- Inscrever-se no RSS Feed
- Realçar
- Imprimir
- Notificar o moderador
Tyro_abc
Bólide
02-15-2021
07:36 PM
- Marcar como novo
- Marcar como favorito
- Inscrever-se
- Emudecer
- Inscrever-se no RSS Feed
- Realçar
- Imprimir
- Notificar o moderador
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
Castor
02-15-2021
09:13 PM
- Marcar como novo
- Marcar como favorito
- Inscrever-se
- Emudecer
- Inscrever-se no RSS Feed
- Realçar
- Imprimir
- Notificar o moderador
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
- Marcar como novo
- Marcar como favorito
- Inscrever-se
- Emudecer
- Inscrever-se no RSS Feed
- Realçar
- Imprimir
- Notificar o moderador
Thank you!
