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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
Mous007
Helper IV
Helper IV

Sum AP debido antes de EOM ?

Hola a todos

Así que tengo la siguiente medida calculada y su funcionamiento correctamente en mi informe, pero quiero usarlo para calcular tres nuevas medidas que calcularían:

  1. solo las facturas a pagar antes del final del mes (último día del mes actual). Traté de utilizar una función llamada EOMONTH, pero no pude conseguir que funcionara.
  2. segunda medida para calcular únicamente la suma de las facturas Cuando la fecha de vencimiento es < primer día del mes siguiente.
  3. medir para calcular solo la suma de las facturas donde la fecha de vencimiento es > último día del mes actual.

También sé que los dos primeros podrían dar el mismo resultado, pero tendría que calcularlos si es posible.

Tengo una tabla de fechas normal y también puedo publicar la consulta que utilicé para generar la tabla si es necesario.

Mi medida:

Total AP (Excepto validado) -
VAR _ConversionRate á SELECTEDVALUE('Tabla de divisas desconectada'[Valor de moneda],1)

devolución
CALCULATE(SUMX('Payables',DIVIDE( Payables'[Invoice Amount] *
RELACIONADO('Tabla de divisas' [Valor de divisa]), _ConversionRate)),
'Pagos'[Estado de la factura] <> "Validado")
Extracto de datos:
Número de facturaImporte de la facturaFecha de vencimiento
Factura 1254.574/29/2020
Factura 2608.084/30/2020
Factura 36114.845/1/2020
Factura 4898.035/2/2020
Factura 51605/3/2020
Factura 63953.45/4/2020
Factura 74135.425/5/2020
Factura 811477.85/6/2020
Factura 9942.55/7/2020
Factura 103605.475/8/2020
Factura 1118685.845/9/2020
Factura 126988.85/10/2020
Factura 137474.345/11/2020
Factura 1432732.25/12/2020
Factura 1518919.695/13/2020
Factura 16964.515/14/2020
Factura 176872.545/15/2020
Factura 18126.865/16/2020
Factura 1927790.355/17/2020
Factura 20342033.865/18/2020
Factura 213228.915/19/2020
Factura 223228.915/20/2020
Factura 2321526.085/21/2020
Factura 2421526.085/22/2020
Factura 2521526.085/23/2020
Factura 2621526.085/24/2020
Factura 27254.575/25/2020
Factura 28608.085/26/2020
Factura 296114.845/27/2020
Factura 30898.035/28/2020
Factura 311605/29/2020
Factura 323953.45/30/2020
Factura 334135.425/31/2020
Factura 3411477.86/1/2020
Factura 35942.56/2/2020
Factura 363605.476/3/2020
Factura 3718685.846/4/2020
Factura 386988.86/5/2020
Factura 397474.346/6/2020
Factura 4032732.26/7/2020
Factura 4118919.696/8/2020
Factura 42964.516/9/2020
Factura 436872.546/10/2020
Factura 44126.866/11/2020
Factura 4527790.356/12/2020
Factura 46342033.866/13/2020
Factura 473228.916/14/2020
Factura 483228.916/15/2020
Factura 4921526.086/16/2020
Factura 5021526.086/17/2020
Factura 5121526.086/18/2020
Factura 5221526.086/19/2020

***

Cualquier otro detalle necesario, por favor hágamelo saber.

Gracias de antemano.

Suave

3 REPLIES 3
Icey
Community Support
Community Support

Hola @Mous007 ,

¿Está resuelto este problema?

Saludos

Icey

se puede considerar cercano, gracias @amitchandak

amitchandak
Super User
Super User

@Mous007 , Pruebe si estos pueden funcionar

calculate(sum(Table[Invoice Amount]), filter(Table, Table[due_date]<eomonth(Table[due_date],0)))
calculate(sum(Table[Invoice Amount]), filter(Table, Table[due_date]<eomonth(Table[due_date],0)+1))
calculate(sum(Table[Invoice Amount]), filter(Table, Table[due_date]>eomonth(Table[due_date],0)))

Basado en hoy

calculate(sum(Table[Invoice Amount]), filter(Table, Table[due_date]<eomonth(Today(),0)))
calculate(sum(Table[Invoice Amount]), filter(Table, Table[due_date]<eomonth(Today(),0)+1))
calculate(sum(Table[Invoice Amount]), filter(Table, Table[due_date]>eomonth(Today(),0)))
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
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

Check out the October 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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

Top Solution Authors