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

ParamDisplayValue('.......')

Started by Jeka, 18 Dec 2008 02:48:33 PM

Previous topic - Next topic

Jeka

Hello,

Im using ParamDisplayValue('Location') in te report header.
This prompt is optional, so when the user is not selecting anything for Location, it will show Blank in ParamDisplayValue.

Is it possible, if blank, then display 'ALL'?


Thank-you for your help!
Nikki

Gopinath

Use a layout calculation like

If(ParamDisplayValue('Location') is null) then ('All') else (ParamDisplayValue('Location'))

Suraj

Yes, answer is posted by gopinath.
Sometimes it favors case statement over if then else.