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
Anuj_1196
Frequent Visitor

Expiry Balance calculation based on expiry date.

NameExpiry DateBalance
A1/12/202310
A1/12/202420
A1/12/20255
B1/12/202340
B1/12/202450
C1/12/202360
C1/12/202470
C1/12/2025 
D1/12/202490
D1/12/2025100
D1/12/2026110


Desired Output:

NameExpiry DateBalance
A1/12/20255
B1/12/202450
C1/12/202470
D1/12/2026110
1 ACCEPTED SOLUTION

Hi @Anuj_1196 ,

 

You can create measures and show your result in a table visual.

Last Expire Date = 
MAXX (
    FILTER (
        ALL ( 'Table' ),
        'Table'[Balance] <> BLANK ()
            && 'Table'[Name] = MAX ( 'Table'[Name] )
    ),
    'Table'[Expiry Date]
)
Balance on Last Expire Date =
CALCULATE (
    SUM ( 'Table'[Balance] ),
    FILTER ( 'Table', 'Table'[Expiry Date] = [Last Expire Date] )
)

Result is as below.

vrzhoumsft_0-1685433705122.png

 

Best Regards,
Rico Zhou

 

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

5 REPLIES 5
FreemanZ
Super User
Super User

or you plot a table visual with the name column and two measures like:

ExpiryDate = MAX(data[Expiry Date])
_Balance = 
MAXX(
    FILTER(
        data,
        data[Expiry Date]=[ExpiryDate]
    ),
    data[Balance]
)

it worked like:

FreemanZ_2-1684995324984.png

Thanks for your time. I'm using similar formula, unfortunately it's giving me the sum rather than the balance on that particular year.

 

Hi @Anuj_1196 ,

 

You can create measures and show your result in a table visual.

Last Expire Date = 
MAXX (
    FILTER (
        ALL ( 'Table' ),
        'Table'[Balance] <> BLANK ()
            && 'Table'[Name] = MAX ( 'Table'[Name] )
    ),
    'Table'[Expiry Date]
)
Balance on Last Expire Date =
CALCULATE (
    SUM ( 'Table'[Balance] ),
    FILTER ( 'Table', 'Table'[Expiry Date] = [Last Expire Date] )
)

Result is as below.

vrzhoumsft_0-1685433705122.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Rico,

I really appreciate your help in solving this puzzle. 

"You are the best"

FreemanZ
Super User
Super User

hi @Anuj_1196 

try to create a calculated table like:

Table = 
ADDCOLUMNS(
    ADDCOLUMNS(
        VALUES(data[Name]),
        "Expiry Date",
        CALCULATE(MAX(data[Expiry Date]))   
    ),
    "Balance",
    CALCULATE(MAX(data[Balance]))
)

it worked like:

FreemanZ_1-1684994862744.png

 

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.

Top Solution Authors