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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Checonova
New Member

Creados vs Resueltos desde datos de Jira

Hola Comunidad, tengo un problema y quiero ver si me pueden ayudar.

Quisiera mostrar una tabla con la información de tickets creados vs tickets resueltos.

Ejemplo:
Día 26/08/2022 se crearon 23 tickets y se resolvieron 32 (18 del día 26/08/2022, y 14 de cualquier otra fecha anterior)
Foto1.PNG
¿Cómo puedo esa mostrar eso en una tabla?
*Resultado esperado
Foto2.PNG

Quiero seleccionar el cualquier día y que me diga cuando tickets se recibieron, cuantos pendientes y cuantos se resolvieron.
He tratado de hacerlo pero los filtros no me dejan ver los datos en la misma tabla, o veo los recibidos o veo los resueltos pero no ambos.

Si necesitan algo lo vemos.
Thank you!



1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Checonova ,

Please try below steps.

1. below is my test table

Table:

vbinbinyumsft_0-1661930075920.png

2. create a date table from "Table"

Table 2 =
CALENDAR (
    FIRSTDATE ( 'Table'[Created Date ] ),
    LASTDATE ( 'Table'[Resolution date] )
)

vbinbinyumsft_1-1661930166602.png

3. create three measure and add a table visual

Create Amount =
VAR cur_date =
    SELECTEDVALUE ( 'Table 2'[Date] )
VAR tmp =
    FILTER ( ALL ( 'Table' ), 'Table'[Created Date ] = cur_date )
VAR ctn =
    COUNTROWS ( tmp )
RETURN
    ctn
Pending Amount =
VAR cur_date =
    SELECTEDVALUE ( 'Table 2'[Date] )
VAR tmp =
    FILTER (
        ALL ( 'Table' ),
        'Table'[Created Date ] = cur_date
            && 'Table'[Status] = "In progress"
    )
VAR ctn =
    COUNTROWS ( tmp )
RETURN
    ctn
Resolve Amount =
VAR cur_date =
    SELECTEDVALUE ( 'Table 2'[Date] )
VAR tmp =
    FILTER (
        ALL ( 'Table' ),
        'Table'[Status] = "Solve"
            && 'Table'[Resolution date] = cur_date
    )
VAR ctn =
    COUNTROWS ( tmp )
RETURN
    ctn

vbinbinyumsft_2-1661930459223.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_ Binbin Yu
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
Anonymous
Not applicable

Hi @Checonova ,

Please try below steps.

1. below is my test table

Table:

vbinbinyumsft_0-1661930075920.png

2. create a date table from "Table"

Table 2 =
CALENDAR (
    FIRSTDATE ( 'Table'[Created Date ] ),
    LASTDATE ( 'Table'[Resolution date] )
)

vbinbinyumsft_1-1661930166602.png

3. create three measure and add a table visual

Create Amount =
VAR cur_date =
    SELECTEDVALUE ( 'Table 2'[Date] )
VAR tmp =
    FILTER ( ALL ( 'Table' ), 'Table'[Created Date ] = cur_date )
VAR ctn =
    COUNTROWS ( tmp )
RETURN
    ctn
Pending Amount =
VAR cur_date =
    SELECTEDVALUE ( 'Table 2'[Date] )
VAR tmp =
    FILTER (
        ALL ( 'Table' ),
        'Table'[Created Date ] = cur_date
            && 'Table'[Status] = "In progress"
    )
VAR ctn =
    COUNTROWS ( tmp )
RETURN
    ctn
Resolve Amount =
VAR cur_date =
    SELECTEDVALUE ( 'Table 2'[Date] )
VAR tmp =
    FILTER (
        ALL ( 'Table' ),
        'Table'[Status] = "Solve"
            && 'Table'[Resolution date] = cur_date
    )
VAR ctn =
    COUNTROWS ( tmp )
RETURN
    ctn

vbinbinyumsft_2-1661930459223.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Checonova , Very similar to HR blog, refer link or the file attached after signature

https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...

 

 

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.