Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hola
¿Podría alguien ayudarme a hacer una medida del mes anterior que no se considere en blanco?
He probado varias expresiones DAX y variables, pero no puedo encontrar una solución que considere contar sin el espacio en blanco.
No solo quiero colocar una selección segmentada, sino que quiero que se muestre en la tarjeta.
datos mostrados:
Datos del mes anterior que deben aparecer en la tarjeta (en este caso JUNIO):
Archivo Pbix:
https://1drv.ms/u/s!Avq1zGJizBimsUCECKbCmKD7UL7g?e=yZmBqc
Gracias por todo.
Saludos
Denis.
Solved! Go to Solution.
Hola @lbendlin,
Gracias por responder a este post,
Pero tenía otro post abierto para el mismo problema y la solución que se presentó fue la mejor posible y me ayudó con mi problema.
También probé esta solución que presentaste pero no funcionó.
Solución por @tamerj1 :
https://community.powerbi.com/t5/Desktop/Date-count-of-previous-month-Blank-HELP/m-p/2643160#M928130
MIRO count LastMonth 2 =
VAR SelectedDate = TODAY ( )
VAR StartOfPreviousMonth = EOMONTH ( SelectedDate, - 2 ) + 1
VAR EndOfPreviousMonth = EOMONTH ( StartOfPreviousMonth, 0 )
VAR Result =
CALCULATE (
COUNT ( 'P Manual'[MIRO date] ),
'P Manual'[MIRO date] >= StartOfPreviousMonth,
'P Manual'[MIRO date] <= EndOfPreviousMonth,
'P Manual'[Status] = "6.1 PAYMENT RELEASED",
REMOVEFILTERS ( 'P Manual' )
)
RETURN
Result
¡Gracias!
MIRO total count :=
CALCULATE(COUNT('P Manual'[Status]), 'P Manual'[Status]="6.1 PAYMENT RELEASED", 'P Manual'[MIRO date]<>BLANK())
MIRO count LastMonth :=
CALCULATE(COUNT('P Manual'[Status]),ALL('P Manual'), 'P Manual'[Status]="6.1 PAYMENT RELEASED", 'P Manual'[MIRO date]<>BLANK(),dateadd('P Manual'[MIRO date],-1,MONTH))
Hola @lbendlin,
Gracias por responder a este post,
Pero tenía otro post abierto para el mismo problema y la solución que se presentó fue la mejor posible y me ayudó con mi problema.
También probé esta solución que presentaste pero no funcionó.
Solución por @tamerj1 :
https://community.powerbi.com/t5/Desktop/Date-count-of-previous-month-Blank-HELP/m-p/2643160#M928130
MIRO count LastMonth 2 =
VAR SelectedDate = TODAY ( )
VAR StartOfPreviousMonth = EOMONTH ( SelectedDate, - 2 ) + 1
VAR EndOfPreviousMonth = EOMONTH ( StartOfPreviousMonth, 0 )
VAR Result =
CALCULATE (
COUNT ( 'P Manual'[MIRO date] ),
'P Manual'[MIRO date] >= StartOfPreviousMonth,
'P Manual'[MIRO date] <= EndOfPreviousMonth,
'P Manual'[Status] = "6.1 PAYMENT RELEASED",
REMOVEFILTERS ( 'P Manual' )
)
RETURN
Result
¡Gracias!