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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
Ajithrjaa
Frequent Visitor

Use Case Cenario

Hi All, I have some use case cenario.

Link : https://drive.google.com/file/d/1BKuC0jXpJcEXxG0sse-3lY0RbHEsqfc2/view?usp=sharing

I have table Visual Contains a Columns Fiscal Year, Net Fees, Rank (Rank I have created Based on Month Number)
If my current Fiscal Year Max Month Number is 2 then I wold Like to see Remaing Month <=2 FY2024 and FY2023.

If my current Fiscal Year Max Month Number is 3 then I wold Like to see Remaing Month <=3 FY2024 and FY2023 I dont want Remaing Month Data.

Ajithrjaa_1-1721045365099.png

Ajithrjaa_2-1721045426021.png



expected Out put like

Ajithrjaa_3-1721045535651.png

Column = if('Table'[Rank] <= MAX('Table'[Rank]), 1,0)
max =

  CALCULATE(
    MAX('Table'[Rank]),
    ALL('Table'[Fiscal Year])  // Replace 'Date' with your actual date table name
)

 

 



1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Hi @Ajithrjaa - create a below measure for max month number and add it to the table chart.

 

MaxMonthNumber =
CALCULATE(
    MAX('Table'[Rank]),
    FILTER('Table', 'Table'[Fiscal Year] = MAX('Table'[Fiscal Year]))
)
 
rajendraongole1_0-1721051779981.png

 

 

created calculated column as below for filter applied

IsVisible =
IF(
    'Table'[Rank] <=
        CALCULATE(
            MAX('Table'[Rank]),
            FILTER('Table', 'Table'[Fiscal Year] = MAX('Table'[Fiscal Year]))
        ),
    1,
    0
)
 
rajendraongole1_1-1721051828890.png

 

 

Hope it helps

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

1 REPLY 1
rajendraongole1
Super User
Super User

Hi @Ajithrjaa - create a below measure for max month number and add it to the table chart.

 

MaxMonthNumber =
CALCULATE(
    MAX('Table'[Rank]),
    FILTER('Table', 'Table'[Fiscal Year] = MAX('Table'[Fiscal Year]))
)
 
rajendraongole1_0-1721051779981.png

 

 

created calculated column as below for filter applied

IsVisible =
IF(
    'Table'[Rank] <=
        CALCULATE(
            MAX('Table'[Rank]),
            FILTER('Table', 'Table'[Fiscal Year] = MAX('Table'[Fiscal Year]))
        ),
    1,
    0
)
 
rajendraongole1_1-1721051828890.png

 

 

Hope it helps

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Solution Authors