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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
R_
Regular Visitor

Dynamic calculation for changing Amount

Hi All,

 

How we can create dynamic calculation on changing bucket as :

 

RowBucketStatusBucketAmiount
1<11000
21--2>1000<2000
3>2>2000

   

and in future its change to 

 

RowBucketStatusBucketAmiount
1<22000
22--3>2000<3000
3>3>3000

 

 

I dont want to change the logic which I have created in BI.

 

XYZ = SWITCH(TRUE(),'Table'[Amount]<=BucketAmount_FirstRow,"BucketStatus_FirstRow",'Table'[Amount] is between BucketAmount_SecountRow,"BucketStatus_SecondRow" && 'Table'[Amount]<=BucketAmount_ThirdRow,"BucketStatus_ThirdRow")

 

 

Or in case I have created bucket, Its shd be dynamic.

 

Bucket1 = IF(Data[Amount]<=BucketAmount_FirstRow && YEAR(Data[Date])=(MAX('Date'[Year])),"BucketStatus_FirstRow",
IF(Data[Amount]>=BucketStatus_FirstRow && Data[Amount]< BucketStatus_SecondRow && YEAR(Data[Date])=MAX('Date'[Year]),"BucketStatus_SecondRow",
IF(Data[Amount]>BucketStatus_SecondRow && Data[Amount]<BucketStatus_ThirdRow && YEAR(Data[Date])=MAX('Date'[Year]),"BucketStatus_ThirdRow", BLANK()))))

 

 

Thanks,

R_

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

Hi @R_,

 

Based on your rule table, I write a column to auto generate the bucket state.(For my scenario, you only need to write two row to limit the amount range)

 

Calculate column:

 

Bucket State =
VAR Min_Amount =
    LOOKUPVALUE (
        'Dim Bucket'[BucketAmiount],
        'Dim Bucket'[Row], MINX ( ALL ( 'Dim Bucket'[Row] ), [Row] )
    )
VAR temp =
    LOOKUPVALUE (
        'Dim Bucket'[BucketAmiount],
        'Dim Bucket'[Row], MAXX ( ALL ( 'Dim Bucket'[Row] ), [Row] )
    )
VAR Max_Amount =
    RIGHT ( temp, LEN ( temp ) - 1 )
RETURN
    IF (
        [Amount] <= VALUE ( Min_Amount ),
        LOOKUPVALUE (
            'Dim Bucket'[BucketStatus],
            'Dim Bucket'[Row], MINX ( ALL ( 'Dim Bucket'[Row] ), [Row] )
        ),
        IF (
            [Amount] >= VALUE ( Max_Amount ),
            LOOKUPVALUE (
                'Dim Bucket'[BucketStatus],
                'Dim Bucket'[Row], MAXX ( ALL ( 'Dim Bucket'[Row] ), [Row] )
            ),
            INT ( [Amount] / 1000 )
                & "--"
                & (
                    INT ( [Amount] / 1000 )
                        + 1
                )
        )
    )

 

 10.PNG

 

 

Notice: the min and max status are look from bucket range table, other median parts are auto generated.

11.PNG

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

1 REPLY 1
v-shex-msft
Community Support
Community Support

Hi @R_,

 

Based on your rule table, I write a column to auto generate the bucket state.(For my scenario, you only need to write two row to limit the amount range)

 

Calculate column:

 

Bucket State =
VAR Min_Amount =
    LOOKUPVALUE (
        'Dim Bucket'[BucketAmiount],
        'Dim Bucket'[Row], MINX ( ALL ( 'Dim Bucket'[Row] ), [Row] )
    )
VAR temp =
    LOOKUPVALUE (
        'Dim Bucket'[BucketAmiount],
        'Dim Bucket'[Row], MAXX ( ALL ( 'Dim Bucket'[Row] ), [Row] )
    )
VAR Max_Amount =
    RIGHT ( temp, LEN ( temp ) - 1 )
RETURN
    IF (
        [Amount] <= VALUE ( Min_Amount ),
        LOOKUPVALUE (
            'Dim Bucket'[BucketStatus],
            'Dim Bucket'[Row], MINX ( ALL ( 'Dim Bucket'[Row] ), [Row] )
        ),
        IF (
            [Amount] >= VALUE ( Max_Amount ),
            LOOKUPVALUE (
                'Dim Bucket'[BucketStatus],
                'Dim Bucket'[Row], MAXX ( ALL ( 'Dim Bucket'[Row] ), [Row] )
            ),
            INT ( [Amount] / 1000 )
                & "--"
                & (
                    INT ( [Amount] / 1000 )
                        + 1
                )
        )
    )

 

 10.PNG

 

 

Notice: the min and max status are look from bucket range table, other median parts are auto generated.

11.PNG

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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