What function can I use to filter Accounts that ends with "000".
Thanks,
Nithya
right([AccountNumber],3) = '000'
I'm assuming the you're talking about a relational model and that the right function is available in your environment (you don't say if you're using SQL, Oracle etc.)
Quote from: nithya1224 on 21 Oct 2015 09:45:13 PM
What function can I use to filter Accounts that ends with "000".
Thanks,
Nithya
Still using a dimensional package?
if so, how about
filter([your Accounts level], caption([your Accounts level]) ends with '000')
MF.
Thanks , Ends with works !!