Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I have 2 tables that I want to incorporate into 1 combo bar/line graph that can be maniplulated using slicers for date ranges and particular User IDs. My intent is to have bars showing counts for each user and a line showing the goal for each user. One is a massive database of entries that has 50+ attribute fields. My issue is the many to many relationship. I cannot figure out how to write a DAX function to make this work.
Simplified large database columns:
The other table is the goals for each User ID that changes each month:
I cannot attach the pbix file because it is proprietary information. Please help me!
Hi @mtp03
Just create a bridge table containg all the unique user Id's and link it 1 to n with both tables. Then you can use to slice by in you visual. You can create this table using DAX but to avoid any chance of circular dependancy I preffer to have it created in power query or from source.
I did this but the problem is the line for goals is just the sum of all for the month (so the bars show the actual entries person but the line is just straight across). I want the line to show the value per User ID. How do I make it reflect that?
This is what it looks like filtered for 1 month. Se ehow the goal line is a sum of everone's goal instead of going up and down to show each person's specific goal?
I want it to look like this, but keep in mind each month the goals change for each person. I tried doing a table for a single month's goals but then there is no historical data captured:
I tried this but I also need to be able to slice by month. So I need 2 seperate tables, one for month and one for user id?