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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Hector78
Helper II
Helper II

The same Measure but distinct dates

Hello.

I have a table like this

 

CódigoF.INI_PARTIDAF.FIN_PARTIDA
 SIN FECHA10
 SIN FECHA12
 102019
 112
 12019
 92019
 102019
 SIN FECHASIN FECHA
 SIN FECHA6
41633211
 SIN FECHASIN FECHA
41311111
 112
 SIN FECHASIN FECHA
41832516
41807416
41590216
 12019
 SIN FECHASIN FECHA
 210
 SIN FECHASIN FECHA
 SIN FECHASIN FECHA
 12019
 SIN FECHASIN FECHA
 SIN FECHASIN FECHA
419426112

I would like to build two measures. The first one, a measrure that would obtain the number of Codigo_Clarity by F.INI_PARTIDA and the other one by F.Fin_Partida and put them in the same graph such in the attached image

With this dataset for the Month 1 the first Measures would be 11 and the second Measure would be 2.

For the Month 2 the first Measure would be 1 and second one would be 0.

Thank you in advance.

2me.PNG

1 ACCEPTED SOLUTION
CadgiRo
Frequent Visitor

With a isolated table for months, yo can do something like this:

 

isolated.JPG

 

 

 

 

 

 

 

 

 

 

 

 

 

 

VALOR_A_BUSCAR =

IF (

             HASONEVALUE( Meses[Mes] );

             VALUES( Meses[Mes] );

             "ERROR"

)

 

Columna1 =

CALCULATE(

      COUNTROWS( Facts );

      FILTER(

             Facts;

             Facts[F.INI_PARTIDA]=[VALOR_A_BUSCAR]

      )

)

 

Columna2 =

CALCULATE(

      COUNTROWS( Facts );

      FILTER(

             Facts;

             Facts[F.FIN_PARTIDA]=[VALOR_A_BUSCAR]

      )

)

 

tell me if it's useful

View solution in original post

2 REPLIES 2
CadgiRo
Frequent Visitor

With a isolated table for months, yo can do something like this:

 

isolated.JPG

 

 

 

 

 

 

 

 

 

 

 

 

 

 

VALOR_A_BUSCAR =

IF (

             HASONEVALUE( Meses[Mes] );

             VALUES( Meses[Mes] );

             "ERROR"

)

 

Columna1 =

CALCULATE(

      COUNTROWS( Facts );

      FILTER(

             Facts;

             Facts[F.INI_PARTIDA]=[VALOR_A_BUSCAR]

      )

)

 

Columna2 =

CALCULATE(

      COUNTROWS( Facts );

      FILTER(

             Facts;

             Facts[F.FIN_PARTIDA]=[VALOR_A_BUSCAR]

      )

)

 

tell me if it's useful

Perfect.

Thank you very much.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors