I need an expression to help me sum customer transactions. In my table i have a list of customers. They have a unique id (Customer Number). The table shows all transactions done that month PER customer. I need a virtual column that sums the transactions per customer.
Then i need to reference another table that shows the same Customers, customer number - their balance. I need to calculate (while referencing between these tables):
I have been given two tables. In table 1,I have customer balances. In table 2 i have the same customers - but i have individual transactions (invoices for the month).
I need to reference these two tables (as i need the balance from table 1 and total of transactions from table 2)
Calculation i am trying to get to:
Customer Balance (from Table 1) / Customer Total transactions for that month (From table 2 - that i still need to calculate)
In that case, I would create a third table with only one Text column and one VC.
In the VC: SUM(Table1[Customer Balance])/SUM(Table2[Final Trx Amount])
The text column you can do whatever with. Maybe a description of what the final number means or something.