If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

How to filter Accounts that ends with 000 in Dimensional Reporting

Started by cognos05, 21 Oct 2015 09:45:13 PM

Previous topic - Next topic

cognos05

What function can I use to filter Accounts that ends with "000".

Thanks,
Nithya

BigChris

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.)

MFGF

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.
Meep!

cognos05