Forum Discussion
redg
4 years agoNew Member
Calculating PV as a Measure
This is my first post on literally any user group, so go easy on me 🙂 I am building a dashboard that calculates PV for a group of accounts. I'm attempting to leverage What-If parameters to allo...
- Anonymous4 years ago
Hi redg ,
Please refer to the pbix file to see if it helps you.
Modify the measure.
gross_funding_am_sum = VAR _b = SUMMARIZE ( 'Sheet1', Sheet1[account_id], "aaa", [gross_funding_am] ) RETURN IF ( ISINSCOPE ( Sheet1[account_id] ), [gross_funding_am], SUMX ( _b, [aaa] ) )Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
4 years agoNot applicable
Hi redg ,
Please refer to the pbix file to see if it helps you.
Modify the measure.
gross_funding_am_sum =
VAR _b =
SUMMARIZE ( 'Sheet1', Sheet1[account_id], "aaa", [gross_funding_am] )
RETURN
IF ( ISINSCOPE ( Sheet1[account_id] ), [gross_funding_am], SUMX ( _b, [aaa] ) )
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
redg
4 years agoNew Member
This was it Anonymous !! Thanks so much 🙂