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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Nestor_Moreno
Frequent Visitor

Counting Measure Results

Hello community,

 

I need count the results of a measure, i try to explain my problem.

 

I have 3 tables:

  1. Reg_Beneficiario_Empleabilidad (this is a personal information of workers)
  2. Vinculacion (this is a information about work, when start, where, what he doing, etcc )
  3. Medidas (this is a measure table)

I need to know how many workers stay in the work after 90 days.

 

In my measure table (Table3), i have 3 measures:

  1. Date to starts to work:
    • Fecha_Vinculacion = MAX(Vinculacion[Fecha_Vinculacion_Ok])
  2. Date to finish to work:
    • Fecha_Finalizo_Proceso = MIN(Reg_Beneficiario_Empleabilidad[Fecha_Finalizo_Proceso_Ok])
  3. Working Days:
    • Dias_Vinculación = IF(ISBLANK([Fecha_Finalizo_Proceso]),VALUE(TODAY())-VALUE([Fecha_Vinculacion]),VALUE([Fecha_Finalizo_Proceso])-VALUE([Fecha_Vinculacion]))

I Show this in a table:

 

Table.PNG

 

Now, my problem is, that i need to know how many workers stay in the work after 90 days. 

 

How i can count how many registers are >= to 90 days if this is a measure. 

 

Table_Register.PNG

 

Thanks for your valuable help.

 

Regards.

1 ACCEPTED SOLUTION

@Nestor_Moreno 

Place this measure in the same visual and you'll have the sum at the total row (and 1 or zero in each of the other rows depending on if the employee has or not been with the company for > 90 days)

New Measure Total V2 =
SUMX (
    DISTINCT ( Reg_Beneficiario_Empleabilidad[ID beneficiario] ),
    ([Dias_Vinculación]> 90) * 1
)

Or you can just place it in a card visual to have the total on it 

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

View solution in original post

3 REPLIES 3
AlB
Community Champion
Community Champion

Hi @Nestor_Moreno 

Try this measure that uses the one you already have. Place it in the visual:

New Measure Total =
SUMX (
    DISTINCT ( Reg_Beneficiario_Empleabilidad[ID beneficiario] ),
    [Dias_Vinculación]
)

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

SU18_powerbi_badge

Hi @AlB ,

 

Thanks for your answer, but how i Could count the workers that have more of 90 days in the work (Dias_Vinculación)?

 

With your formula are adding up. 

 

Thanks for your help. 

 

Regards

 

 

@Nestor_Moreno 

Place this measure in the same visual and you'll have the sum at the total row (and 1 or zero in each of the other rows depending on if the employee has or not been with the company for > 90 days)

New Measure Total V2 =
SUMX (
    DISTINCT ( Reg_Beneficiario_Empleabilidad[ID beneficiario] ),
    ([Dias_Vinculación]> 90) * 1
)

Or you can just place it in a card visual to have the total on it 

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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