Sugand Anand
Sugand Anand

Reputation: 69

Row calculation in Power BI

enter image description here

Hi all,

Let's say for example I have 4 rows here A, B, C, and D with 3 columns SRG, PTS and ACSP. The 4th row "D" is a calculation of C/A (C divided by A). Need help in performing this calculation in Power BI.

Upvotes: 0

Views: 59

Answers (1)

Strawberryshrub
Strawberryshrub

Reputation: 3389

Right click in your fields pane on your table New Column and use following DAX expression:

= DIVIDE([C], [A])

Upvotes: -1

Related Questions