Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
I have 2 tables which have the same column headings. One is a snapshot of data taken at the start of the month and one is a snapshot taken at the start of every week.
I am looking to have a calculated field that gives the difference between the two tables for one of the columns. I have inserted a screenshot of the table relationships.
I am looking to calculate:
'Curr Month Snap FY'[Start of Month Revenue] - 'Curr Week Snap FY'[Start of Week Revenue]
Any help would be appreciated.
Solved! Go to Solution.
Don't think a merge is a good idea here, would create a TON of unnecessary data.
I'd recommend making that as a measure (don't know what table to house it in, doesn't matter much):
Difference = SUM('Curr Month Snap FY'[Start of Month Revenue]) - SUM('Curr Week Snap FY'[Start of Week Revenue])
Don't think a merge is a good idea here, would create a TON of unnecessary data.
I'd recommend making that as a measure (don't know what table to house it in, doesn't matter much):
Difference = SUM('Curr Month Snap FY'[Start of Month Revenue]) - SUM('Curr Week Snap FY'[Start of Week Revenue])
point taken
As i interpret your post: In query Editor you would merge the tables to join them, and then make a calculated column.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 17 | |
| 11 |
| User | Count |
|---|---|
| 55 | |
| 53 | |
| 43 | |
| 36 | |
| 32 |