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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
fav_ccc2021
Helper I
Helper I

Busqueda aproximada por condición y rangos con DAX

Hola, por favor su ayuda para realizar la siguiente busqueda de acuerdo un producto, la cantidad ( en un rango ) y el descuento que debe entregarme, lo he intentado pero no logro dar con la formula DAX.

Son tablas : Registros y Productos

 

Registros

fav_ccc2021_0-1611161698147.png

Productos

fav_ccc2021_1-1611161728023.png

 

Debe reflejarse el descuento en la primera tabla , segun la cantidad entre el rango establecido.

Muchas gracias por las respuesta, esto me ha quitado el sueño ya varias noches ....

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@fav_ccc2021 , Create a new column in the table 1

 

maxx(filter(Table2, Table2[Producto] = table1[Producto] && Table2[cantidad Inicial] <= Table[cantidad] && Table2[cantidad final] >= Table1[cantidad]), Table2[descuento])

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@fav_ccc2021 , Create a new column in the table 1

 

maxx(filter(Table2, Table2[Producto] = table1[Producto] && Table2[cantidad Inicial] <= Table[cantidad] && Table2[cantidad final] >= Table1[cantidad]), Table2[descuento])

My friend, you are the BOSS!!! It works perfectly .... Its awesome.,

 

Thanks a lot ...

 

Best regards

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors