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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Syndicate_Admin
Administrator
Administrator

Segmentación de datos para buscar valores entre columnas

Hola. Tengo las columnas Importe desde y Cantidad hasta en mi tabla de datos. Necesita que la segmentación de datos filtre todas las filas que cumplen este valor. Por ejemplo, si tengo el valor 1000, necesito filtrar todas las filas, hay 1000 entre los valores Amount From y Amount To.

daliux_0-1646039210463.png

1 ACCEPTED SOLUTION
Syndicate_Admin
Administrator
Administrator

@daliux , Tome un parámetro what if o cree una segmentación de datos independiente usando una tabla usando generar series

nueva medida =

var _sel = selectedvalue(whatif[Value]) //o use whatifmeasure

devolución

calculate(sum(Table[bitdamount]), filter(Table, Table[Amount from] >=_sel && Table[Amount to] <= _sel ))

https://docs.microsoft.com/en-us/power-bi/desktop-what-if

View solution in original post

1 REPLY 1
Syndicate_Admin
Administrator
Administrator

@daliux , Tome un parámetro what if o cree una segmentación de datos independiente usando una tabla usando generar series

nueva medida =

var _sel = selectedvalue(whatif[Value]) //o use whatifmeasure

devolución

calculate(sum(Table[bitdamount]), filter(Table, Table[Amount from] >=_sel && Table[Amount to] <= _sel ))

https://docs.microsoft.com/en-us/power-bi/desktop-what-if

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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