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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Kudoed Authors