detriez
Board Regular
- Joined
- Sep 13, 2011
- Messages
- 193
- Office Version
- 365
- Platform
- Windows
I am trying to add a column with this criteria
if
(
[AnnualRevenue] >= 250000000
and
[Has Products]="True"
and
[Is Target]="True"
and
[Marketing Country]="True"
)
or
[AccountTypeGroup]="Client"
or
[Is Target]="True"
then "True" else "False"
I'm not sure I have the syntax correct
if
(
[AnnualRevenue] >= 250000000
and
[Has Products]="True"
and
[Is Target]="True"
and
[Marketing Country]="True"
)
or
[AccountTypeGroup]="Client"
or
[Is Target]="True"
then "True" else "False"
I'm not sure I have the syntax correct
Code:
if([AnnualRevenue] >= 250000000 and [Has Products]="True" and [Is Target]="True" and [Marketing Country]="True") or [AccountTypeGroup]="Client" or [Is Target]="True" then "True" else "False"