cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Mfouyer
Regular Visitor

Count repeated data between two bases

Hi there. I need a help. 

 

I need count repeted data between two bases. 

 

Base A - Calendar: Contain all date of a month (date no repeat)

Base B - Ticket registration: Contains many records throughout the month (more than one record for each day of month )

 

I need include a column in table Base A - Calendar to count how many times the records of table Base B - Ticket registration appears according a date in Base A.

 

Ex: Table B there is 4 records in day 20 and 9 records in day 25:

 

Tabble A - Caledar

Mfouyer_0-1652956416288.png

 

Thanks so much

1 ACCEPTED SOLUTION
v-henryk-mstf
Community Support
Community Support

Hi @Mfouyer ,

 

Try the below formula:

Column =
VAR dul =
    CALCULATE (
        COUNTROWS ( 'Table' ),
        ALLEXCEPT ( 'Table', 'Table'[Date], 'Table'[Record] )
    )
RETURN
    IF ( dul = 1, 0, 1 )
M =
VAR row_total =
    CALCULATE ( COUNTROWS ( 'Table' ), ALLEXCEPT ( 'Table', 'Table'[Date] ) )
VAR row_dul =
    CALCULATE ( SUM ( 'Table'[Column] ), ALLEXCEPT ( 'Table', 'Table'[Date] ) )
RETURN
    row_total - row_dul

vhenrykmstf_0-1653296290773.png

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


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

1 REPLY 1
v-henryk-mstf
Community Support
Community Support

Hi @Mfouyer ,

 

Try the below formula:

Column =
VAR dul =
    CALCULATE (
        COUNTROWS ( 'Table' ),
        ALLEXCEPT ( 'Table', 'Table'[Date], 'Table'[Record] )
    )
RETURN
    IF ( dul = 1, 0, 1 )
M =
VAR row_total =
    CALCULATE ( COUNTROWS ( 'Table' ), ALLEXCEPT ( 'Table', 'Table'[Date] ) )
VAR row_dul =
    CALCULATE ( SUM ( 'Table'[Column] ), ALLEXCEPT ( 'Table', 'Table'[Date] ) )
RETURN
    row_total - row_dul

vhenrykmstf_0-1653296290773.png

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors