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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
binayjethwa
Helper IV
Helper IV

Show dates based on Hierarchy data

Hi,

I have below requiement where i need to show start dates for different columns in a matrix ,

I have a matrix with Project and Stage title names , and i need to display individual dates for each of them.

Project is a parent and Stage is child ,so by default it will show project dates, if i expand  project , for each project individual stage dates it should show.

 

I tried below measure ,

Test = Switch (

True(),

isinscope(Project[title]),values(Project [Startdate]),

isinscope(Stage[title]),values(Stage[Startdate]))

 

I am getting same dates for both project and stage dates. 

 

Is there any way we can achieve this?

 

Thanks,

Binay

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @binayjethwa ,

I created some data:

Project:

vyangliumsft_0-1688718425857.png

Stage:

vyangliumsft_1-1688718425858.png

 

Here are the steps you can follow:

1. Create measure.

Measure =
IF(
    ISINSCOPE('Stage'[title]),MAXX(FILTER(ALL(Stage),'Stage'[title]=MAX('Stage'[title])),[StartDate]),
    IF(       ISINSCOPE('Project'[title]),MAXX(FILTER(ALL(Project),'Project'[title]=MAX('Project'[title])),[Startdate]),BLANK()
))

2. Result:

vyangliumsft_2-1688718458712.png

 

 

Best Regards,

Liu Yang

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

1 REPLY 1
Anonymous
Not applicable

Hi  @binayjethwa ,

I created some data:

Project:

vyangliumsft_0-1688718425857.png

Stage:

vyangliumsft_1-1688718425858.png

 

Here are the steps you can follow:

1. Create measure.

Measure =
IF(
    ISINSCOPE('Stage'[title]),MAXX(FILTER(ALL(Stage),'Stage'[title]=MAX('Stage'[title])),[StartDate]),
    IF(       ISINSCOPE('Project'[title]),MAXX(FILTER(ALL(Project),'Project'[title]=MAX('Project'[title])),[Startdate]),BLANK()
))

2. Result:

vyangliumsft_2-1688718458712.png

 

 

Best Regards,

Liu Yang

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

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

Top Kudoed Authors