The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hey,
I am struggling with trying to return a specific type of informaion and combine into one data table.
I want a data table that shows me the following:
Technician Name | Hours Budgeted to Work | Hours Actually Worked |
Bob | 10 | 12 |
Larry | 15 | 10 |
Cindy | 10 | 11 |
The problem I am having is that I have two data sets that have this information. Both Data Sets contain the Technician's Name, but one data set contains the Hours Budgeted and the second data set contais the Hours actually worked. The hours actually worked has multiple time sheets like on-site time, travel time, break time, etc. I only want the on-site time calculated as the Hours actually worked and then added to the same data table.
What function can do this? I played around with SumX but I don't think that is it.
Can you help?
Solved! Go to Solution.
Hi, @Anonymous
Based on your description, i created data to reproduce your scenario. The pbix file is attached in the end.
Actual:
Budget:
You may create a calculated table with the following dax.
Table =
ADDCOLUMNS(
Budget,
"Hours Actually Worked",
CALCULATE(
SUM(Actual[Actual Value]),
FILTER(
Actual,
[Name]=EARLIER(Budget[Name])&&
[Time Sheets]="on-site time"
)
)
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
Based on your description, i created data to reproduce your scenario. The pbix file is attached in the end.
Actual:
Budget:
You may create a calculated table with the following dax.
Table =
ADDCOLUMNS(
Budget,
"Hours Actually Worked",
CALCULATE(
SUM(Actual[Actual Value]),
FILTER(
Actual,
[Name]=EARLIER(Budget[Name])&&
[Time Sheets]="on-site time"
)
)
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
you could create a relationship between the tables in your data model based on the technician's name (I assume it's going to be a one-to-one relationship?) Then you can display any columns in one table.
Hi,
Share the 2 datasets in a format that can be pasted in an MS Excel file.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
110 | |
80 | |
66 | |
53 | |
52 |
User | Count |
---|---|
121 | |
117 | |
77 | |
64 | |
63 |