on ‎2018 Nov 15 10:18 AM
Hi All,
please help I want to get the input control value and use it in a report heading.
for intance I have input control on Profit Center if the user selects a certain profit center I would like to use that value as the report heading.
I am using webi 4.2 as a reporting tool
Request clarification before answering.
Hi Thato,
You can use ReportFilter function:
=ReportFilter([Your Input Control Object])
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
just create a table - insert your "profit center" dimension and set your input control to interact with that table.
You can format your table like something cool, set it as a horizontal table: change header, set some horizontal spacing at your table, add an selection image in the header removeheader text

You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Thato,
Create a variable for that dimension for which you want to have Input Control.
Now assign that variable to input control and also in the heading part.
Now whenever you'll select any value from input control that same will be displayed as your report heading.
NOTE: If you don't select any filter from input control you'll have #MULTIVALUE error so to eradicate that in report heading mention this condition:
=If (Count([Dimension])>1) Then "'Select only one value" Else [Dimension]
Let us know if it works!
Thanks,
Rajan 🙂
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.