Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a chart expression to display status which are active and process only
My expression is
=if(Match([Status],'Active','Process'), Contract)
which works fine now i want to add and statement to give me record which active date are grater than 5-31-2015 and only this activate date rules apply when Field [Type] value is C
hi
you can use this
=if(Match([Status],'Active','Process') and [active date]>date('5/31/2015'), Contract)
your expression works fine i just forgot to mention that only in a field name [Contract Category] which value is C that active date rule apply .
Thanks
hi
you can use this
=if(Match([Status],'Active','Process') and [active date]>date('5/31/2015'), Contract)
your expression works fine i just forgot to mention that only in a field name [Contract Category] which value is C that active date rule apply .
Thanks