March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi all.
Recently I found out that my dataset from SQL server lacks some information. My dataset is about machine units and their daily performance. However, if a unit did not work some particular day (maintenance or whatever), the entry with corresponding date is not stored. For example, a CAT unit didn't work on Jan 4th and I would like it to be stored as zero. Here is the example of my database and a modified one.
What is the best way to make this modifications?
The initial problem is that the average monthly performance is calculated wrong (it divides total performance by only table-existing days in january, not all 31 days). Make monthly performance in a separate table could make sense, but then I guess it will lack of time intelligence, drill downs, and there are more indicators, not only performance. But if you think it is a better idea, let me know.
I really appreciate any help.
Hi @karimkz.
In your scenario, you can follow below steps to achieve your requirement:
1. Duplicate this query connect to the SQL Server database, filter the original query only keep cat data, rename it as cat table. Also filter the duplicated table to only keep hitachi data, rename it as hitachi table.
2. Create a calendar table.
3. Merge the calendar table with cat table and hitachi table separately. For the unit column, use Fill down or up, for the value column, use Replaces values as 0.
4. Append the cat table with hitachi table.
For more information, please check attached .pbix file.
Best Regards,
Qiuyun Yu
Thank you for your answer!
I see your point, I believe it will work out. Gotta learn how to do all that things though.
Also I think of creating a date table, then do something like:
CALCULATE(SUM(performance); FILTER(date; date.month=EARLIEST(month))).
Do you think it will work?
Hi
we also have the same situation , but our tables are very huge so cant make it duplicate , is ithere any way for this issue , did you got the solution
Creating a calendar table and merging it with the existing table is still a best option.
You need to dimensionalise your data. I would create a separte date table and a seperate unit table (with the distinct list of unit types). You can then use a calculations like this:
CALCULATE ( AVERAGEX ( CROSSJOIN ( VALUES('Unit'[Unit]), VALUES('Date'[Date]) ) ,SUM([Performance]) ) )
CROSSJOIN will give you the product of all dates and all units that are currently being filtered. Then AVERAGEX will iterate over this calculating the SUM and then finally calculating the average.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |