Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hey,
I have a standard one-to-many relationship between a dimension and a fact table.
I need to create calculated column for the dimension table where values are based on whether said dimension appears in a fact table.
I would only need 1 or 0 for each row on dimension table, but I can't seem to figure this one out.
edited for clarification.
Solved! Go to Solution.
I managed to get the result I was looking for with this.
= IF ( ISBLANK ( CALCULATE ( COUNTROWS ( VALUES ( Fact) ) ) ) ; 0 ; 1 )
@Anonymous are you looking for a column or value?
Proud to be a Super User!
@vanessafvg I'm looking for a value.
One calculated column for dimension table and in that column values 0 or 1 based on the fact table.
I managed to get the result I was looking for with this.
= IF ( ISBLANK ( CALCULATE ( COUNTROWS ( VALUES ( Fact) ) ) ) ; 0 ; 1 )
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.