Dear experts,
Is it possible to have a webi report with the following columns' layout:
Country | Average 2009 | Jan 2010 | Feb 2010 | .... | Dec 2010 | Average 2010
I've created a variable directly in the webi report but I'm not able to have detail by month in 2010 and a column with the 2010 total.
Any ideas?
thank you!
Best,
Inês Santos
Can you try this. Create three objects and use cross tab.
Average2009
Avg(column) over (partition by year=2009)
Average2010
Avg(column) over (partition by year=2010)
Monthwise
CASE
WHEN Date >='01-01-2010' and Date<='31-01-2010' THEN 'Jan2010'
WHEN..
....
...
END
Add a comment