Forum Discussion
Anonymous
2 years agoNot applicable
IF Function & Filter Help
The Goal is to have one column that generates "SDR Gen" is the SRD Name and AE Name are not blank, and generate "Self Gen" if the SDR name is blank and the AE Name is not blank. Here are the two for...
- 2 years ago
hello Anonymous ,
please check if this accomodate your need.
SDR Gen =IF(not ISBLANK('Table'[SRD Name])&¬ ISBLANK('Table'[AE Name]),"SDR Gen",IF(ISBLANK('Table'[SRD Name])&¬ ISBLANK('Table'[AE Name]),"Self Gen",BLANK()))Hope this will help you.Thank you.
Irwan
2 years agoSuper User
hello Anonymous ,
please check if this accomodate your need.
SDR Gen =
IF(
not ISBLANK('Table'[SRD Name])&¬ ISBLANK('Table'[AE Name]),
"SDR Gen",
IF(
ISBLANK('Table'[SRD Name])&¬ ISBLANK('Table'[AE Name]),
"Self Gen",
BLANK()
))
Hope this will help you.
Thank you.