Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
This should be simple as it is a wash in SQL. However I am having no luck. TABLE A has measured DEPTHS per RAIL. TABLE B assigns COLOR between TOP and BOTTOM depths. Because this is a many-to many relationship, I created a bridge table (TABLE C) with one to many joins to both the A and B tables. The end result I am trying to achieve is that if the Table A RAIL = TABLE B RAIL and the TABLE A DEPTH falls between the TABLE B TOP and BOTTOM depths then post the TABLE B COLOR. I either get blanks or True/False. Please provide me the correct DAX formula to accomplish this.
Solved! Go to Solution.
Hi, @Anonymous
You can try the following methods.
Color =
CALCULATE ( MAX ( 'Table B'[COLOR] ),
FILTER ( ALL ( 'Table B' ),
[RAIL] = EARLIER ( 'Table A'[RAIL] )
&& [TOP] <= EARLIER ( 'Table A'[DEPTH] )
&& [BOTTOM] >= EARLIER ( 'Table A'[DEPTH] )
)
)
Measure =
CALCULATE ( MAX ( 'Table B'[COLOR] ),
FILTER ( ALL ( 'Table B' ),
[RAIL] = SELECTEDVALUE( 'Table A'[RAIL] )
&& [TOP] <= SELECTEDVALUE ( 'Table A'[DEPTH] )
&& [BOTTOM] >= SELECTEDVALUE( 'Table A'[DEPTH] )
)
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
You can try the following methods.
Color =
CALCULATE ( MAX ( 'Table B'[COLOR] ),
FILTER ( ALL ( 'Table B' ),
[RAIL] = EARLIER ( 'Table A'[RAIL] )
&& [TOP] <= EARLIER ( 'Table A'[DEPTH] )
&& [BOTTOM] >= EARLIER ( 'Table A'[DEPTH] )
)
)
Measure =
CALCULATE ( MAX ( 'Table B'[COLOR] ),
FILTER ( ALL ( 'Table B' ),
[RAIL] = SELECTEDVALUE( 'Table A'[RAIL] )
&& [TOP] <= SELECTEDVALUE ( 'Table A'[DEPTH] )
&& [BOTTOM] >= SELECTEDVALUE( 'Table A'[DEPTH] )
)
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi @Anonymous
try to create a calculated column in TableA like:
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
9 | |
8 | |
8 |
User | Count |
---|---|
14 | |
12 | |
11 | |
11 | |
8 |