Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
The below is the data source table:
Class | Value |
Fx | 100 |
Fx | 200 |
Cash | 50 |
Cash | 50 |
Equity | 250 |
Now i need to show table like below:
NAME | Value |
Fx | 300 |
Cash | 100 |
Commodity | 0 |
Equity | 250 |
Others | 0 |
in the above table NAME is a inline field i have created.
i need to write expression like :
Sum({<Class=NAME>}Value) in Value field in the above table.
How can i do this? i am not able to pass the NAME field value for Class field in set analysis.
Please help me
While loading data in your script change Class to NAME
and set analysis will be like this
Sum({<NAME={'Cash'} >}Value)
Hi Vikas,
Thanks for your reply.
but i don't need to write condition for each dimension. it should be dynamic.
'Cash' is a hard coded value, i need to be automatically fetch this value from dimension value.
you can do this some thing like this post
Vikas