Hi,
I am working on a Webi report where my requirement is to find the adjacent value for a highest value for in every week.
Given table :
Week Date Usage Week1 Jan1,2014 1 Week1 Jan2,2014 108 Week1 Jan3,2014 72 Week1 Jan4,2014 3 Week1 Jan5,2014 16 Week2 Jan6,2014 135 Week2 Jan7,2014 158Output:
Week Variable1 Date Week1 108 Jan2,2014 Week2 158 Jan7,2014I have created two variables:
1) To get the maximum usage value
Variable1: max(usage) foreach (Week)
2) To get the date for a max usage value
Variable2: if((usage)=(Variable1)) then (Date)
But when I use the vatiable2 in the table, it gives me blank values.
Could you please help on this?
Thanks.