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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
Diasmt2
Regular Visitor

Text Column consolidating incorrectly

Hi All,

 

I am trying to buid a matrix with data from a project. 

However, i have an issue with the status column. When I go to a upper level, the consolidation is brinding "Done" as it is the latest value, but actually should be late...as we have an acitivity late.

Is there a way to fix it or to bringing blank when it is a upper level?

 

Diasmt2_1-1715525375905.png

 

Thank you!!!!!!

 

 

 

 

1 ACCEPTED SOLUTION
Wilson_
Memorable Member
Memorable Member

Hi Diasmt2,

 

Try creating a DAX measure like:

Status =
SWITCH (
    TRUE(),
    ISINSCOPE ( Table1[Lower Level] ), SELECTEDVALUE ( Table1[Status] ),
    ISINSCOPE ( Table1[Upper Level] ), IF ( "Late" IN VALUES ( Table1[Status] ), "Late", "Done" )
)

 

Of course, please use your actual table and column names instead of my placeholders, and incorporate your own logic into the last line. The main thing I'm trying to show is the SWITCH/ISINSCOPE measure structure, which allows you to have different logic at different levels of detail in your hierarchy.


----------------------------------
If this post helps, please consider accepting it as the solution to help other members find it quickly. Also, don't forget to hit that thumbs up and subscribe! (Oh, uh, wrong platform?)

 

P.S. Need a more in-depth consultation for your Power BI data modeling or DAX issues? Feel free to hire me on Upwork or DM me directly on here! I would love to clear up your Power BI headaches.




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
Wilson_
Memorable Member
Memorable Member

Hi Diasmt2,

 

Try creating a DAX measure like:

Status =
SWITCH (
    TRUE(),
    ISINSCOPE ( Table1[Lower Level] ), SELECTEDVALUE ( Table1[Status] ),
    ISINSCOPE ( Table1[Upper Level] ), IF ( "Late" IN VALUES ( Table1[Status] ), "Late", "Done" )
)

 

Of course, please use your actual table and column names instead of my placeholders, and incorporate your own logic into the last line. The main thing I'm trying to show is the SWITCH/ISINSCOPE measure structure, which allows you to have different logic at different levels of detail in your hierarchy.


----------------------------------
If this post helps, please consider accepting it as the solution to help other members find it quickly. Also, don't forget to hit that thumbs up and subscribe! (Oh, uh, wrong platform?)

 

P.S. Need a more in-depth consultation for your Power BI data modeling or DAX issues? Feel free to hire me on Upwork or DM me directly on here! I would love to clear up your Power BI headaches.




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

Proud to be a Super User!





Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.