cancel
Showing results for 
Search instead for 
Did you mean: 

Multiple selection Prompt

Former Member
0 Kudos

Hi

I am using a universe where a object named Group.

Field name: Group

Select : Group

Where condition=

Data_Label.Label = @Prompt('Label','char','IndQuestion Value\Label','multi',free)

But when i open the report from WEBI then a prompt comes in front of me where i can select only single value from left panel. I need multiple selection. Please help me if Prompt function needs any additional arguments or any other way of doing this.

thanks for any suggestions

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Arif,

Check the syntax of your prompt, it does not look correct...


@Prompt('message','type',[{'value1'[,'value2',...]},class_nameobject_name'],mono/multi,free/constrained) Creates an object that prompts users to enter a specific value.

likely to be this



Data_Label.Label IN @Prompt('Label','A',@select(IndQuestion Value\Label),multi,free)

Hope this helps

Jacques

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Arif,

Try the following syntax:

Data_Label.Label = @Prompt('Label','char','IndQuestion Value\Label',"Multi",free)

(double quotes around MULTI)

OR

Data_Label.Label IN @Prompt('Label','char','IndQuestion Value\Label',"Multi",free)

Thanks

Abhijeet

Former Member
0 Kudos

Hi Arif,

You can use the following Syntax

Data_Label.Label = @Prompt('Label','char','IndQuestion Value\Label','multiple',free)

that is multiple instead of multi

Former Member
0 Kudos

Thanks