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
Fishtron
Advocate I
Advocate I

Floating date of interest - administration delay

Hello everyone,

first thing first, sorry for my English.

I have an SQL table (direct query) with manufacturing batches, states (pre-production administrations, production, packing, etc.), time stamps (since, to) , planed terms (how long the batch can be in the state - for example every batch has 3 workdays to done packing) and others. SQL table autoaticly refreshes once a day.

I need to visualise all batches in delay, in timeline (day by day). I did this before when delays were exported every day, but you can imagine the size of data, which were multiplying every day.

 

This is how the visualisation should look like:

 

Admin_delays.JPG

In report, there must be possibility to switch between SUM of days in delay and SUM of batches in delay.

 

Columns in SQL table:

  • batch
  • state
  • state since (date)
  • state to (date)
  • plan (for example 3 days to switch state)
  • days of delay (final delay)

 

In the SQL table, there are batches with states without delays as well.

 

Could you please help me, how to make this happen?

a) day of interest (day on timeline - X axis)

b) delays of each batch in this day

 

Thank you very much.

2 REPLIES 2
v-frfei-msft
Community Support
Community Support

Hi @Fishtron,

 

Here I made a sample as below. You can refer to the following steps.

 

1. Enter the sample data and create the calculated columns as below.

 

 

state = IF(DATEDIFF(Table1[state since],Table1[state to],DAY)>Table1[plan],"delay","on time")
delay days = IF(Table1[state]="delay",DATEDIFF(Table1[state since],Table1[state to],DAY)-Table1[plan],BLANK())

 

2. Create the measure as below.

 

 

count = CALCULATE(COUNT(Table1[batch]),FILTER(Table1,Table1[state]="delay"))
sumdays = CALCULATE(SUM(Table1[delay days]))

 

Then we can get the result as below.

 

Capture.PNG

 

For more details, please check the pbix as attached. If it doesn't meet your requirement, kindly share your pbix to me.

 

https://www.dropbox.com/s/fqedpla3mwffdkp/Floating%20date.pbix?dl=0

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Thank you very much for your respond Frank,

unfortunately I didn't explained my problem clearly.

 

I need to see amount of delays (count of days and count of delayed batches) in two separeted graphs day by day (days are X axis).

I hope images below will explain that.Workflow & report explanation.JPG

 

This is how my SQL direct query looks like:

Data_table_query.JPG

 

 

There are about 30 states but not all of them are interesting for this report so I will filter them. 

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.