Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello
I created an array table like this:
Now, I'd like to use the values and apply a formula. Then display this in another matrix table with the same column name and row name. For example (first row, two first dates): (36*100/323) - 100 to -88.9% and so on...
My question is, how can I use the table value and apply the formula. Then display the result in another table?
Solved! Go to Solution.
Hi , @Anonymous
You can also create a calculated column. Something like that:
Value3 =
VAR val =
SUM ( 'Table'[Value] )
VAR Next_value =
CALCULATE (
MAX ( 'Table'[Value] ),
'Table',
'Table'[Category] = EARLIER ( 'Table'[Category] ),
'Table'[Date]
= EARLIER ( 'Table'[Date] ) + 1
)
RETURN
Next_value * 100 / 'Table'[Value] - 100
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi , @Anonymous
You can also create a calculated column. Something like that:
Value3 =
VAR val =
SUM ( 'Table'[Value] )
VAR Next_value =
CALCULATE (
MAX ( 'Table'[Value] ),
'Table',
'Table'[Category] = EARLIER ( 'Table'[Category] ),
'Table'[Date]
= EARLIER ( 'Table'[Date] ) + 1
)
RETURN
Next_value * 100 / 'Table'[Value] - 100
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
The post is double.
Please look at this.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
User | Count |
---|---|
73 | |
70 | |
38 | |
25 | |
23 |
User | Count |
---|---|
96 | |
93 | |
50 | |
43 | |
42 |