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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Pavlous
Advocate II
Advocate II

Custom Table: Continuous Record

Hi,

I have to made a new table, but I am really terrible at those custom tables. Lets say, that I want to track life cycle of projects. So I need to have listed all items with all months in which they live. But from the source I have only time stamps.

ProjectStatusDate of Implementation
NRG-1A01/01/2018
NRG-1B01/03/2018
NRG-1C01/05/2018
NRG-2A01/02/2018
NRG-2B01/03/2018
NRG-2C25/03/2018
NRG-1D12/12/2018
NRG-1E01/01/2019
NRG-2C03/05/2018
NRG-2D20/12/2018
NRG-3A01/01/2018
NRG-3B20/01/2018
NRG-3C22/01/2018
NRG-3D05/02/2018
NRG-3E06/03/2018

And I need to return values with all the statuses until they changed

ProjectStatusMonth
NRG-1AJan-18
NRG-3AJan-18
NRG-3BJan-18
NRG-3CJan-18
NRG-2AFeb-18
NRG-3DFeb-18
NRG-1AFeb-18
NRG-1BMar-18
NRG-2BMar-18
NRG-3EMar-18
NRG-2CMar-18
NRG-1BApr-18
NRG-2CApr-18
NRG-3EApr-18
.........

 

Any help appreciated

2 REPLIES 2
Anonymous
Not applicable

@Pavlous,

I am not very clear about the logic you use to create the second table based on the first table. Could you please explain more about it? For example, how do you get the following record in the second table? 

NRG-1 A Feb-18



Regards,
Lydia

Hi @Anonymous,

thank you for your reply.

 

Thats something I would like to do within the custom table. So it should be the result based on datas from the first data.

 

In other words, I need to "fill" all months between time stamps per project and with the status until its changed.

 

I am sure, its doable, as I have similiar function for other solution. Unfortunatelly I cant replicate it for this one, as I forgot the logic of it 😕

Result = 

VAR calendar_date =
    CALENDAR (
        CALCULATE ( FIRSTDATE (Archive[Received Date]), **filter** ),
        CALCULATE (  LASTDATE('CAS Tasks'[EndTime]), **filter** ))
		//^^ this part takes first and last relevant date 
    
VAR filted =
    FILTER ( ALL ( 'CAS Tasks' ), [Category] = **filter**)  
VAR filted2= FILTER(ALL('Archive'),[Categories] = **filter** )
RETURN
ADDCOLUMNS ( calendar_date, "Total", (SUMX ( FILTER ( ADDCOLUMNS ( filted, "Exist", CONTAINS ( SELECTCOLUMNS ( CALENDAR ( [Received Date], 'CAS Tasks'[EndTime] ), "CheckDate", [Date] ), [CheckDate], [Date] ) ), [Exist] = TRUE () ), 'CAS Tasks'[To process corr.] ))+ ( SUMX ( FILTER ( ADDCOLUMNS ( filted2, "Exist2", CONTAINS ( SELECTCOLUMNS ( CALENDAR ( [Received Date], [End Time] ), "CheckDate2", [Date] ), [CheckDate2], [Date] ) ), [Exist2] = TRUE () ), Archive[To process corr.] ) ) )

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.