Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have to apply contains along with more condition in the below expressions.
=Count({<[TO]={'BRITTA-DEALER'},[FROM]={"$(vManufacturer)"}>} DISTINCT [ORDER_ID_NUMBER])
1. i want to get [TO] contains {'BRITTA'} only instaed of [TO]={'BRITTA-DEALER'}
2. i want to add one more condition like [Status]='NEW' along with the above expression.
How to modify the above expressions along with above two points.
pls.help..
For contains, i used below and it's working.
[TO]={'*BRITTA*'}
=Count({<[TO]={'*BRITTA*'},[Status]={'NEW'},[FROM]={"$(vManufacturer)"}>} DISTINCT [ORDER_ID_NUMBER])
Anyone can help us to proceed further....
@saivina2920 This?
=Count({<[TO]={'BRITTA'},[Status]={'NEW'},[FROM]={"$(vManufacturer)"}>} DISTINCT [ORDER_ID_NUMBER])
Thanks for your reply.
[TO] should not be hard coded like ['BRITTA']
Because column "TO" fetch all the record which contains "BRITTA"
{'BRITTA-DEALER'}
{'BRITTA-SHOPPER'}
{'BRITTA-AGENCY'}
{'BRITTA-REGION'}
etc....
if need any more details pls. let me know.
For contains, i used below and it's working.
[TO]={'*BRITTA*'}
=Count({<[TO]={'*BRITTA*'},[Status]={'NEW'},[FROM]={"$(vManufacturer)"}>} DISTINCT [ORDER_ID_NUMBER])