This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi
Wonder if any one out there could help me..... I'm trying to perform a calculation over two unrelated tables, which are connected through a third table
Table 1 has individual transaction rows with a indivdual sales Column
Table 2 has a unique identifier of Stock Code
Table three has sales targets against Stock Codes
This is the relationships
Bascailly merge 1 has indvidual lines with a profit figure, however i would like to create a calcuated column in the targets table which is a sum of the profit figure in merge 1 but based upon date and nominal code .
This is what i would like the targets table to look like, i am just missing the final colmun
i have got
Solved! Go to Solution.
Hi @tmears ,
If I havne't misunderstood your requirement, you want to add the sum of 'sales table'[Profit] to target table based on the current month and nominal. For example, the following item:
You want to get the sum of 'sales table'[Profit] in whole 2019 May, and the nominal is 4001.
In this scenario, we can use the following DAx query:
Amount by Revenue (sum) =
CALCULATE (
SUM ( 'sales table'[Profit] ),
FILTER (
ALL ( 'sales table' ),
'sales table'[DocumentHeaders.Created].[Month]
= EARLIER ( 'target table'[Date].[Month] )
&& 'sales table'[Full Nominal List] = EARLIER ( 'target table'[Nominal] )
&& 'sales table'[DocumentHeaders.Created].[Year]
= EARLIER ( 'target table'[Date].[Year] )
)
)The result will like below:
Best Regards,
Teige
Hi @tmears ,
Could you please share the sample data to us for analysis? By the way, if there is no relationship between these two tables, how will the SUM() work on, the date? Based on your description, it looks like that these two tables have a many to many relationship.
Best Regards,
Teige
@TeigeGao Please find enclosed a sample PBIX File.
Bascially i am trying to add a calculated column in the target table of the SUM by month of the profit column in the Sales Table.Link to Sample PBIX
Many thanks
T
Hi @tmears ,
If I havne't misunderstood your requirement, you want to add the sum of 'sales table'[Profit] to target table based on the current month and nominal. For example, the following item:
You want to get the sum of 'sales table'[Profit] in whole 2019 May, and the nominal is 4001.
In this scenario, we can use the following DAx query:
Amount by Revenue (sum) =
CALCULATE (
SUM ( 'sales table'[Profit] ),
FILTER (
ALL ( 'sales table' ),
'sales table'[DocumentHeaders.Created].[Month]
= EARLIER ( 'target table'[Date].[Month] )
&& 'sales table'[Full Nominal List] = EARLIER ( 'target table'[Nominal] )
&& 'sales table'[DocumentHeaders.Created].[Year]
= EARLIER ( 'target table'[Date].[Year] )
)
)The result will like below:
Best Regards,
Teige
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 27 | |
| 26 | |
| 22 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 45 | |
| 44 | |
| 41 | |
| 21 | |
| 18 |