HI
can anyone fix this formula for me ?
if [CUSTOMER_TYPE_DESC]="Individual"
and [CIFSegment]="NL" AND "MASS"
then MASS
thank you
Solved! Go to Solution.
Hi @160475 ,
You can try this
if [CUSTOMER_TYPE_DESC]="Individual"
and ([CIFSegment]="NL" OR [CIFSegment]="MASS")
then MASS
else null
Regards,
Hi @160475 ,
If the condition returns true ,then put a text value "MASS" ,right?
if so, please try:
if [CUSTOMER_TYPE_DESC]="Individual" and [CIFSegment]="NL" or [CIFSegment]="MASS" then "MASS" else null
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @160475 ,
You can try this
if [CUSTOMER_TYPE_DESC]="Individual"
and ([CIFSegment]="NL" OR [CIFSegment]="MASS")
then MASS
else null
Regards,
@160475 , I think it should be like
if [CUSTOMER_TYPE_DESC]="Individual"
and ( [CIFSegment]="NL" or [CIFSegment]= "MASS")
then MASS
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
125 | |
75 | |
65 | |
56 | |
55 |
User | Count |
---|---|
199 | |
104 | |
88 | |
79 | |
77 |