Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

List in Designer

Status
Not open for further replies.

Latyr

IS-IT--Management
Feb 25, 2004
2
FR
Hi

One of my dimension can have the following values :
X --> unavailable
A --> available
D --> Delete

What should I do in Designor if I want my users (reporter) to see the values Unavailable, Available or Delete ?

Thanks for your help and support

Latyr
 
How can I do that ? Would you mind giving a bit more informations ???
Thanks in advance
 
CAse object
x = replace(object, x , unavailable)
a = replace(object, a, available)
d = replace(object, d, delete)
end

This is the logic but you have find out the correct syntax according to your Database type (ie. Oracle, SQL Server, Access)
 

Code:
CASE WHEN Object = 'x' THEN 'UnAvailable'
     WHEN Object = 'a' THEN 'Avaialable'
     WHEN Object = 'd' THEN 'Delete'
END

Sri
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top