Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I`m using a couple of if functions for setting a selection in a table.
A single if to show just one purchase order state works fine.
Like this =If([PurchaseItemStatus]='2 CONFIRM',[PurchaseItemStatus])
But I can`t make a selection with more purchase order states combined as a selection.
for instance I want all order with state '2 CONFIRM' and '3 QC) in one function
any help would be great
Hi,
Use Match function and display the data
=If(Match( [PurchaseItemStatus], '2 CONFIRM' , '3 QC' ) ,[PurchaseItemStatus] )
It will match multiple items just put like
'2 CONFIRM' , '3 QC' , etc
Let me know
HTH
Rgds
Anand
Hi,
Use Match function and display the data
=If(Match( [PurchaseItemStatus], '2 CONFIRM' , '3 QC' ) ,[PurchaseItemStatus] )
It will match multiple items just put like
'2 CONFIRM' , '3 QC' , etc
Let me know
HTH
Rgds
Anand
I assume you are looking for OR combination of your states, not AND, since a single record state is bound to a single value, right?
Maybe like:
=If(match([PurchaseItemStatus],'2 CONFIRM','3 QC'),[PurchaseItemStatus])
Regards,
Stefan
Thanks,
that did the trick
Hi,
I am also correct would you check it.
Just joking
Rgds
Anand
Both are Correct!!
Hi,
Yes Both are correct and we are glad to help you we try to do as soon as possible.
Rgds
Anand
Hi,
one question more regarding this selection.
How do you select , without any status, so status is not filled in
And how do you select, with if filled in (with any data) then select