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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

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

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

View solution in original post

1 REPLY 1
Anonymous
Not applicable

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

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.