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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Mikester_104
New Member

Porcentaje de Agrupación Power BI

Nuevo en Power BI: necesita ayuda.

Tengo un cálculo muy básico que porcentaje entre -100% y 1,000% - Estoy tratando de agruparlos así en un modelo ya que tengo 13.000 registros cada uno con un percetange diferente.

Ya he tomado mi QTY disponible y Establecer valor de stock de seguridad y he completado el % sobre o bajo valor de stock de seguridad. Whcih es el %.

Desea agrupar o agrupar estos en un rango:

GrupoBajoAlto
El stock de seguridad se ha ido-100%-100%anythin que cae entre estos dos % añadido ido a la nueva columna
75% del stock de seguridad se ha ido-75%-99%
50% del stock de seguridad se ha ido-50%-74%
25% del stock de seguridad se ha ido-25%-49%
Acaba de entrar en SS0%-24%
25% por encima del stock de seguridad1%25%
50% por encima del stock de seguridad26%50%
75% por encima del stock de seguridad51%75%
100% por encima del stock de seguridad76%1000000%
1 ACCEPTED SOLUTION

Hola @Mikester_104 ,

Si lo obtuve correctamente, puede crear esta columna calculada utilizando la instrucción switch():

Group = 
SWITCH (
    TRUE (),
    'Table'[% into SS] = -1, "Safety Stock Gone",
    'Table'[% into SS] >= -0.99
        && 'Table'[% into SS] <= -0.75, "75% of Safety Stock Gone",
    'Table'[% into SS] >= -0.74
        && 'Table'[% into SS] <= -0.5, "50% of Safety Stock Gone",
    'Table'[% into SS] >= -0.49
        && 'Table'[% into SS] <= -0.25, "25% of Safety Stock Gone",
    'Table'[% into SS] >= -0.24
        && 'Table'[% into SS] <= 0, "Just Entered into SS",
    'Table'[% into SS] >= 0.1
        && 'Table'[% into SS] <= 0.25, "25% Above Safety Stock",
    'Table'[% into SS] >= 0.26
        && 'Table'[% into SS] <= 0.5, "50% Above Safety Stock",
    'Table'[% into SS] >= 0.51
        && 'Table'[% into SS] <= 0.75, "75% Above Safety Stock",
    'Table'[% into SS] >= 0.76
        && 'Table'[% into SS] <= 10000, "100% Above Safety Stock",
    "No corresponded data"
)

switch.png

Best Looks,
Yingjie Li

Si este post ayuda, por favor considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

View solution in original post

5 REPLIES 5
pranit828
Community Champion
Community Champion

Hola @Mikester_104

Puede registrar la entrada y salida de muestra para estos registros.

saludos

Pranit





PBI_SuperUser_Rank@1x.png


Hope it resolves your issue? 
Did I answer your question? Mark my post as a solution!

Appreciate your Kudos, Press the thumbs up button!!
Linkedin Profile

SkuDescripciónOn HandStock de seguridad% en SS
1234Cepillo de dientes100200-50.00%
1111Dental Floss500200150.00%
4321Crema dental50500-90.00%

Hola @Mikester_104 ,

Si lo obtuve correctamente, puede crear esta columna calculada utilizando la instrucción switch():

Group = 
SWITCH (
    TRUE (),
    'Table'[% into SS] = -1, "Safety Stock Gone",
    'Table'[% into SS] >= -0.99
        && 'Table'[% into SS] <= -0.75, "75% of Safety Stock Gone",
    'Table'[% into SS] >= -0.74
        && 'Table'[% into SS] <= -0.5, "50% of Safety Stock Gone",
    'Table'[% into SS] >= -0.49
        && 'Table'[% into SS] <= -0.25, "25% of Safety Stock Gone",
    'Table'[% into SS] >= -0.24
        && 'Table'[% into SS] <= 0, "Just Entered into SS",
    'Table'[% into SS] >= 0.1
        && 'Table'[% into SS] <= 0.25, "25% Above Safety Stock",
    'Table'[% into SS] >= 0.26
        && 'Table'[% into SS] <= 0.5, "50% Above Safety Stock",
    'Table'[% into SS] >= 0.51
        && 'Table'[% into SS] <= 0.75, "75% Above Safety Stock",
    'Table'[% into SS] >= 0.76
        && 'Table'[% into SS] <= 10000, "100% Above Safety Stock",
    "No corresponded data"
)

switch.png

Best Looks,
Yingjie Li

Si este post ayuda, por favor considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

Hola

¿Está buscando una solución de medida o columna calculada?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.