I have a Webi document that I am using in a Publication with Dynamic Recipients from an Excel file. I have a list of Sales Managers that I am distributing their individual sales report to.
In the Webi document I have a table showing new customer sales. This customers are selected via a Filter which is
a) YTD Sales > 0
and
b) Last YTD = 0
I have a total of this new business on the table =Sum([Sales])
I have an overall total on the table using the = NoFilter([Sales))
The document works perfectly if you run is manually via Launchpad.
However when I execute it via a publication, the NoFilter([Sales)) figure being displayed is the Company Wide value and not the individual value of each of the Sales Managers. I understand why as the formula = NoFilter([Sales)) is being interpreted as NOFILTER so it's "ddropping" off the selection of Sales Manager.
These are dummy numbers but an example of what I am seeing in the output. Not the format is not what is in the report either - its just ti show the values being returned in each of the publications:
Sales Manager 1
Customer | Actual Sales YTD | Report Result |
---|---|---|
Customer A | 1,234 | 999,999 |
Customer B | 2,345 | 999,999 |
Customer C | 3,456 | 999,999 |
Customer D | 4,567 | 999,999 |
Customer E | 5,678 | 999,999 |
Sales Manager 2
Customer | Actual Sales YTD | Report Result |
---|---|---|
Customer A | 9,012 | 999,999 |
Customer B | 4,123 | 999,999 |
Customer C | 1,234 | 999,999 |
Customer D | 4,569 | 999,999 |
Customer E | 7,120 | 999,999 |
Is there any alternative to NoFilter?
Many thanks
Gill