cancel
Showing results for 
Search instead for 
Did you mean: 

Input Control in Webi

Former Member
0 Kudos

Hi,

I have created input control like All, name, year, revenue.

for name, I created formula like

concatenation("Name of the Chart",[Name]) - Name of the chart AAAA

concatenation("Name of the year",[Year]) - Name of the year January.

But for All values, it displays multivalue.

Can anyone help on this how to display for selecting "All"

Accepted Solutions (1)

Accepted Solutions (1)

former_member207878
Active Participant
0 Kudos

Can you please share screenshot?

Answers (1)

Answers (1)

arijit_das
Active Contributor
0 Kudos

When you select All, the object [Name] or [Year] will return multiple values. So, to display the content, you need to use a table. If you use =Concatenation("Name of the Chart",[Name]) in a free standing cell, it will display multivalue error.

** The entire page should be under scope of the input control.

Alternative 1: In a free standing cell, use the formula:

="Name of the Chart "+ReportFilter([Name])

Alternative 2: In a free standing cell, use the formula:

=If(Count([Name])>1;"Name of the Chart - All";Concatenation("Name of the Chart ";[Name]))

Former Member
0 Kudos

Thanks a lot Arijit. Working perfectly

arijit_das
Active Contributor
0 Kudos

Please close the discussion if your issue is resolved.