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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
damj
Frequent Visitor

Counting Rows from table using external calender

Hi.

 

Im trying to count the rows of open errors in the table shown below (figure 1). The table shows a train computer logging errors from different trains.table.PNG

Figure 1. ( table of FACT_SAP_KILDE)

 

I have tried doing an external table and counting the rows of open errors like figure 2 below, and i works great! problem is, i can't relate to the table above (Figure 1)  and define which train or which group it belongs to.counting errors.PNG

Figure 2 ( Table of Komfort )

 

My question is if there is a way to make the same calulation for Figure 1 as performed in Figure 2, so the details from the train can be available?

 

 

Hope you guys can help.

 

 

 

 

1 ACCEPTED SOLUTION
v-lid-msft
Community Support
Community Support

Hi @damj ,

 

We can put the train field and the following measure into a table visual, then put the 'Komfort'[Date] into a slicer to meet your requirement:

 

 

OpenErrorsCount =
CALCULATE (
    COUNTROWS ( 'FACT_SAP_KILDE' ),
    FILTER (
        'FACT_SAP_KILDE',
        [Afsluting_rev] >= MAX ( 'Komfort'[Date] )
            && [Opretted_rev] <= MIN ( 'Komfort'[Date] )
            && [type] = "ET"
    )
)

 

 

We can also use the 'Komfort'[Date] as the row field of matrix, train as the column field, use the measure as the value.

 

Best regards,

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-lid-msft
Community Support
Community Support

Hi @damj ,

 

How about the result after you follow the suggestions mentioned in my original post?Could you please provide more details about it If it doesn't meet your requirement?

 

Best regards,

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-lid-msft
Community Support
Community Support

Hi @damj ,

 

We can put the train field and the following measure into a table visual, then put the 'Komfort'[Date] into a slicer to meet your requirement:

 

 

OpenErrorsCount =
CALCULATE (
    COUNTROWS ( 'FACT_SAP_KILDE' ),
    FILTER (
        'FACT_SAP_KILDE',
        [Afsluting_rev] >= MAX ( 'Komfort'[Date] )
            && [Opretted_rev] <= MIN ( 'Komfort'[Date] )
            && [type] = "ET"
    )
)

 

 

We can also use the 'Komfort'[Date] as the row field of matrix, train as the column field, use the measure as the value.

 

Best regards,

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 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.