Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ACC_Tom
New Member

Separately Conditional Filtering and Combining Data Sets on a Graph

Hi Guys, new user here.

 

What would be the best way to simultaneously separately filter and combine two datasets visually?

 

I have a table of invoiced amounts that I wish to filter post a specific date and sum by month.

 

I also have a table of projects with forecast amounts that need to be filtered depending on job status to exclude those with specific statuses (dead, unsuccessful ...) and then summed with the invoiced values by month and displayed graphically.

 

Is it possible to separate filters and combine within the graphic display options or am I looking at pre-filtering and combining the data into a new table, column, etc.

 

Thanks in advance for your assistance.

1 ACCEPTED SOLUTION

@ACC_Tom

 

In this scenario, to combine two datasets data together, you should aggregate the rows in your Dataset 1 first. Then build the relationship to Dataset 2. Then you can just create a calculated column combine 'Invoice Amount' and 'Value'.

 

1. Create a table aggregating the rows in Dataset 1.

 

Table = SUMMARIZE(Table3,Table3[Client],Table3[Date],"Amount",CALCULATE(SUM(Table3[Invoice Amount])))

222.PNG

2. Build the relationship to Dataset 2.

333.PNG

3. Create a calculated column like below:

Total Value = 'Table'[Amount]+RELATED(Table4[Value])

444.PNG

 

Regards,

 

View solution in original post

3 REPLIES 3
Greg_Deckler
Super User
Super User

Can you post sample data and expected results?


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Dataset 1

ClientInvoice AmountDate
X200Jan
X1000Jan
Y400May
Z600

Oct

 

Dataset 2

ProjectValueStatusEst. Completion Date
A450To DoJan
B900To InvoiceMay
C1000CompleteOct

 

 

What I am trying to do is display the total amount from invoice and forecasted work on a month by month basis.  However I to filter Dataset 2 by Status, in this case to remove "Complete" entries.  The two datasets share a common identifier code column to link them if needed.

 

The end result for the above example would be:

 

MonthValue
Jan1650
May1300
Oct600

@ACC_Tom

 

In this scenario, to combine two datasets data together, you should aggregate the rows in your Dataset 1 first. Then build the relationship to Dataset 2. Then you can just create a calculated column combine 'Invoice Amount' and 'Value'.

 

1. Create a table aggregating the rows in Dataset 1.

 

Table = SUMMARIZE(Table3,Table3[Client],Table3[Date],"Amount",CALCULATE(SUM(Table3[Invoice Amount])))

222.PNG

2. Build the relationship to Dataset 2.

333.PNG

3. Create a calculated column like below:

Total Value = 'Table'[Amount]+RELATED(Table4[Value])

444.PNG

 

Regards,

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.