Reputation: 69
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
Reputation: 3389
Right click in your fields pane on your table New Column
and use following DAX expression:
= DIVIDE([C], [A])
Upvotes: -1