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
Anonymous
Not applicable

Slow Measure

Hi dear, I have the following measure that currently works well however being part of a multilevel report when deploying a category that can contain up to 800 items the calculation becomes slow and consequently the matrix display my question is how can I improve that measure so that it calculates only on the current level that I am selecting (displaying) in the matrix.

Volume3:=SWITCH(TRUE(),
HASONEVALUE(Sales[Item]),[Volume2],
HASONEVALUE(Division[DivShort]),(DIVIDE(Sales[Qtty Current],Sales[Qtty Last],0)-1)*Sales[MXP-USD Last],
HASONEVALUE(Customer[SECTOR]),(DIVIDE(Sales[Qtty Current],Sales[Qtty Last],0)-1)*Sales[MXP-USD Last],
HASONEVALUE(Customer[Holding]),(DIVIDE(Sales[Qtty Current],Sales[Qtty Last],0)-1)*Sales[MXP-USD Last],
HASONEVALUE(Vendor[Name]),(DIVIDE(Sales[Qtty Current],Sales[Qtty Last],0)-1)*Sales[MXP-USD Last],
HASONEVALUE(Sales[CURR]),SUMX(VALUES(Class[Description Class]),Sales[ZVolume2]),
BLANK()
)
1 ACCEPTED SOLUTION
v-cherch-msft
Employee
Employee

Hi @Anonymous 

I would suggest you could create several measures to achieve that.For example:

Measure1=(DIVIDE(Sales[Qtty Current],Sales[Qtty Last],0)-1)*Sales[MXP-USD Last]
Measure2=SUMX(VALUES(Class[Description Class]),Sales[ZVolume2])
Volume3 :=
SWITCH (
    TRUE (),
    HASONEVALUE ( Sales[Item] ), [Volume2],
    HASONEVALUE ( Division[DivShort] ), [Measure1],
    HASONEVALUE ( Customer[SECTOR] ), [Measure1],
    HASONEVALUE ( Customer[Holding] ), [Measure1],
    HASONEVALUE ( Vendor[Name] ), [Measure1],
    HASONEVALUE ( Sales[CURR] ), [ Measure2],
    BLANK ()
)

Or

Volume3 :=
IF (
    HASONEVALUE ( Sales[Item] ),
    [Volume2],
    IF (
        HASONEVALUE ( Division[DivShort] ) || HASONEVALUE ( Customer[SECTOR] )
            || HASONEVALUE ( Customer[Holding] )
            || HASONEVALUE ( Vendor[Name] ),
        [Measure1],
        IF ( HASONEVALUE ( Sales[CURR] ), [ Measure2] )
    )
)

Regards,

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-cherch-msft
Employee
Employee

Hi @Anonymous 

I would suggest you could create several measures to achieve that.For example:

Measure1=(DIVIDE(Sales[Qtty Current],Sales[Qtty Last],0)-1)*Sales[MXP-USD Last]
Measure2=SUMX(VALUES(Class[Description Class]),Sales[ZVolume2])
Volume3 :=
SWITCH (
    TRUE (),
    HASONEVALUE ( Sales[Item] ), [Volume2],
    HASONEVALUE ( Division[DivShort] ), [Measure1],
    HASONEVALUE ( Customer[SECTOR] ), [Measure1],
    HASONEVALUE ( Customer[Holding] ), [Measure1],
    HASONEVALUE ( Vendor[Name] ), [Measure1],
    HASONEVALUE ( Sales[CURR] ), [ Measure2],
    BLANK ()
)

Or

Volume3 :=
IF (
    HASONEVALUE ( Sales[Item] ),
    [Volume2],
    IF (
        HASONEVALUE ( Division[DivShort] ) || HASONEVALUE ( Customer[SECTOR] )
            || HASONEVALUE ( Customer[Holding] )
            || HASONEVALUE ( Vendor[Name] ),
        [Measure1],
        IF ( HASONEVALUE ( Sales[CURR] ), [ Measure2] )
    )
)

Regards,

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.