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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

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

Hi @Anonymous ,

 

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

Anonymous
Not applicable

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

 

Anonymous
Not applicable

Hi @Anonymous ,

 

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.

Anonymous
Not applicable

Hi Rico,

I really appreciate your help in solving this puzzle. 

"You are the best"

FreemanZ
Super User
Super User

hi @Anonymous 

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.