I would like to ask for your help with solving following problem:
- I have a table called IncomeTable with three columns: Team, Income (Value), Date (month + year)
Team Income Date
Sales 5000$ january 2020
Marke 2000$ march 2021
- I have another table CostsTable with very similar structure:
Team Costs Date
Sales 3000$ january 2020
Marke 1000$ march 2021
What I would like to do is to create a new calculated table that looks like that:
Team Income Costs Date
Sales 5000$ 3000$ january 2020
Marke 2000$ 1000$ march 2021
There is relation between those two tables on Date column. I tried many different formulas with Summarize, SummarizeColumns but nothing seems to solve my problem.
Could you please give me a tip how to calculate that?
Many thanks in advance.