Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
stanlyrj
Contributor III
Contributor III

P&L Reporting with Simulation using variable

Hi Community,

Here I'm trying to create P&L report including some variables to simulate different scenarios.

Here I have the P&L structure configured as shown in the below image.

P&L Structure.PNG

What I'm trying to create a table as shown as in the below image.

Desiered Table

Simulation Expected Output.PNG

The expression I have used for calculating [Amount*Variable] =

aggr(sum(amount),[P&L Layout],[Row No])*sum(pick(match(P&L Lines,Variable),Varaible))

The resulting table is as shown in the below image.

Current Table

Simulation output.PNG

Can anyone suggest any possible solution to solve this problem?

Any help is greatly appreciated.

Thanks in advance.

Stanly

1 Solution

Accepted Solutions
stanlyrj
Contributor III
Contributor III
Author

Solved!!

Used an expression like this

sum(

     aggr(sales*variable,[P&L Lines],[P & L Layout], [Row No]) -

     aggr(costs*variable,[P&L Lines],[P & L Layout], [Row No]) -

     aggr(personal costs*variable,[P&L Lines],[P & L Layout], [Row No])

)

Simulation now works perfectly.......................

View solution in original post

1 Reply
stanlyrj
Contributor III
Contributor III
Author

Solved!!

Used an expression like this

sum(

     aggr(sales*variable,[P&L Lines],[P & L Layout], [Row No]) -

     aggr(costs*variable,[P&L Lines],[P & L Layout], [Row No]) -

     aggr(personal costs*variable,[P&L Lines],[P & L Layout], [Row No])

)

Simulation now works perfectly.......................