Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Soy nuevo en Power Bi y estoy tratando de crear una fórmula que devuelva un número de equipo si:
- un número de equipo en la columna Equipo aparece más de una vez Y
- al menos una línea de los números de equipo coincidentes en la columna Ubicación tiene "Sala de exposición" o "Capacitación" Y
- al menos una línea de los números de equipo coincidentes en la columna Fecha de Invoice tiene una fecha Y
- al menos una línea de los números de equipo coincidentes en la columna Tipo de pedido tiene la palabra clave "Venta"
Solved! Go to Solution.
Hay @Antje ,
Cree una columna personalizada con el siguiente código y úsela como filtro en su objeto visual:
Column =
VAR _count =
COUNTROWS (
FILTER (
'Table (5)',
'Table (5)'[Eqipment] = EARLIER ( 'Table (5)'[Eqipment] )
)
)
VAR _location =
COUNTROWS (
FILTER (
'Table (5)',
'Table (5)'[Eqipment] = EARLIER ( 'Table (5)'[Eqipment] )
&& 'Table (5)'[Location] IN { "Showroom", "Location" }
)
)
VAR _invoice_Date =
COUNTROWS (
FILTER (
'Table (5)',
'Table (5)'[Eqipment] = EARLIER ( 'Table (5)'[Eqipment] )
&& 'Table (5)'[Invoice date] <> BLANK ()
)
)
VAR _ordertype =
COUNTROWS (
FILTER (
'Table (5)',
'Table (5)'[Eqipment] = EARLIER ( 'Table (5)'[Eqipment] )
&& 'Table (5)'[Order type] IN { "Sale" }
)
)
RETURN
IF (
_count >= 2
&& _location >= 1
&& _invoice_Date >= 1
&& _ordertype >= 1,
1,
0
)
salida:-
Gracias
Samarth
¡Muchas gracias, Samarth! Esto funcionó perfectamente.
Hay @Antje ,
Cree una columna personalizada con el siguiente código y úsela como filtro en su objeto visual:
Column =
VAR _count =
COUNTROWS (
FILTER (
'Table (5)',
'Table (5)'[Eqipment] = EARLIER ( 'Table (5)'[Eqipment] )
)
)
VAR _location =
COUNTROWS (
FILTER (
'Table (5)',
'Table (5)'[Eqipment] = EARLIER ( 'Table (5)'[Eqipment] )
&& 'Table (5)'[Location] IN { "Showroom", "Location" }
)
)
VAR _invoice_Date =
COUNTROWS (
FILTER (
'Table (5)',
'Table (5)'[Eqipment] = EARLIER ( 'Table (5)'[Eqipment] )
&& 'Table (5)'[Invoice date] <> BLANK ()
)
)
VAR _ordertype =
COUNTROWS (
FILTER (
'Table (5)',
'Table (5)'[Eqipment] = EARLIER ( 'Table (5)'[Eqipment] )
&& 'Table (5)'[Order type] IN { "Sale" }
)
)
RETURN
IF (
_count >= 2
&& _location >= 1
&& _invoice_Date >= 1
&& _ordertype >= 1,
1,
0
)
salida:-
Gracias
Samarth