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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Alain06
Frequent Visitor

Add backlog value before calculate

Good morning

 

I'm trying to calculate a ticket backlog starting at 01/01/23, with open ticket, closed ticket and balance....
everything is ok for that, there are various examples ....

My problem is that my balance was greater than 120 on 01/01/23 and I can't add that to my automatic calculation

 

Can you help me

1 REPLY 1
Alain06
Frequent Visitor

With the Data ....
I would like to add 120 to my starting backlog
 
Tickets Créés = CALCULATE(COUNT('DataRM_GIDN'[TicketRM]),USERELATIONSHIP('DataRM_GIDN'[Créé],'TBCal'[Date]) )
 
Tickets Cloturés = CALCULATE(COUNT('DataRM_GIDN'[TicketRM]),USERELATIONSHIP('DataRM_GIDN'[Fermé],'TBCal'[Date]),not(ISBLANK('DataRM_GIDN'[Fermé])))
 
Backlog =
CALCULATE(
    COUNTx(
        FILTER(
            'DataRM_GIDN',
            'DataRM_GIDN'[Créé]<=max('TBCal'[Date]) && (ISBLANK('DataRM_GIDN'[Fermé])
            || 'DataRM_GIDN'[Fermé]>max('TBCal'[Date]))
        ),
        ('DataRM_GIDN'[TicketRM])
    ),
    CROSSFILTER(
        'DataRM_GIDN'[Créé],'TBCal'[Date], None
    )
)
 
Capture d’écran 2023-04-10 190202.png

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.