Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have the below expression
Count(DISTINCT{<ORDER_DETAILS.Cred_stat2_Description -= {0}>}[ORDER_DETAILS.O-HInvoice])
but would like to exclude
"ORDER_DETAILS.Cred_stat2_Description" where is
debit note
damage?
works well with one exception and tried below is that correct as i need to exclude more than one description?
Count(DISTINCT{<ORDER_DETAILS.Cred_stat2_Description -= {""},ORDER_DETAILS.Cred_stat2_Description-={'DebitNote,Damage'}>}[ORDER_DETAILS.O-HInvoice])
try this
Count(DISTINCT{<ORDER_DETAILS.Cred_stat2_Description -= {""},ORDER_DETAILS.Cred_stat2_Description-={'DebitNote'}>}[ORDER_DETAILS.O-HInvoice])
works well with one exception and tried below is that correct as i need to exclude more than one description?
Count(DISTINCT{<ORDER_DETAILS.Cred_stat2_Description -= {""},ORDER_DETAILS.Cred_stat2_Description-={'DebitNote,Damage'}>}[ORDER_DETAILS.O-HInvoice])
Try this
Count(DISTINCT {<ORDER_DETAILS.Cred_stat2_Description -= {'0', 'DebitNote', 'Damage'}>} [ORDER_DETAILS.O-HInvoice])
you can add any num of field values by adding comma
Count(DISTINCT{<ORDER_DETAILS.Cred_stat2_Description -= {""},ORDER_DETAILS.Cred_stat2_Description-={'DebitNote,Damage','Here','Here','Here'}>}[ORDER_DETAILS.O-HInvoice])
like "here" you can add your descriptions