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!

User Prompts

Status
Not open for further replies.

ADB1

Programmer
Aug 24, 2001
235
GB
All,

I have a simple list report with some columns that have been built after the sql has been ran. By inserting a formula, If Then Else, in this case. I want to be able to filter and have a prompt appear on this column. I can't add a prompt on a condition in the query panel due to the If Then Else being a user variable, and not a Universe object.

How would I build some prompts on the user created variables?

Thanks in advance.

Ad.
 
You should be able to build a prompt at the query level that doesn't affect the rows being returned

Something like:
yourobject = 'Enter a value'
OR yourobject <> 'Enter a value'

Then at the report level, you can use a defined filter that does =<your_local_dimension> = UserResponse('Enter a value',,,,,) I'm not supplying all the parameters, but you should get the idea.

Steve Krandel
VERITAS Software
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top