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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
bluetronics
Helper III
Helper III

how to create dimension table with 2 different fact tables

Hello!

Is there anyone let me know how to create a dimenstion table for relationship with fact tables?

Table A

Date    ITEM    QTY           Date        ITEM             QTY

1/1        A          2               1/2            A                 4

1/2       B           3                1/3            D                 5

1/3       C           4

1/4       A           2

What I would like to make a dimension table below:

ITEM

A

B

C

D

Thanks in advance.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@bluetronics , Try to create a new table as

distinct(union(all(Table1[item]), all(Table2[Item])))

O

distinct(union(distinct(Table1[item]), distinct(Table2[Item])))

refers to https://www.youtube.com/watch?v=Bkf35Roman8 video video

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@bluetronics , Try to create a new table as

distinct(union(all(Table1[item]), all(Table2[Item])))

O

distinct(union(distinct(Table1[item]), distinct(Table2[Item])))

refers to https://www.youtube.com/watch?v=Bkf35Roman8 video video

Thank you for your feedback. It works what I exatly wnat to get.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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