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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
BPTBPTBPT
Helper II
Helper II

I have tables, need new field about one of the tables. How to proceed?

I think this is really simple but cannot come up with the answer.

 

I have table 1, with all my projects listed:

- project 1

- project 2

- project 3

- project 4

- project 5

...

- project 1000

 

Also table 2:

- project 3

- project Y

- project 5

- project 1000

 

These two tables are linked 1:1.

I am creating a visual (simple table) in which I can see for which projects in table 1, there is a corresponding project in table 2.

I succeeded in this already, but would like to make an additional filter for the visual: "Project present in Table 2?", which I can give a yes or no. Yes shows all projects from 1 that are also in 2, No shows all projects from 1 that are not in 2. 

 

How do I make this filter?

I tried a few thinks but  think I am on the wrong track. First of all: should I make a new column for this? If so, in table 1 or 2? Or in a new table?

3 REPLIES 3
Anonymous
Not applicable

Hi @BPTBPTBPT ,

 

Is your end goal to filter the table on the left to the table on the right? If yes, this filter can be set directly as shown in the picture.

vcgaomsft_0-1654658697705.png

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

Anonymous
Not applicable

Hello BPTBPTBPT,

Please try this New Column in Table 1

IsInTable2 = 

IF(
Table1[Column1] = RELATED('Table2'[Column1]),
"Yes",
"No")
Then you can use the slicer with column "IsInTable2" to filter the data.
 
If you found this useful, please accept it as a solution. Else, kudos will be great for efforts!
Thank you.
Tejas
tamerj1
Super User
Super User

Hi @BPTBPTBPT 

if you are building your visual ove table 1 column then create a new measure which you csn place in the same visual 

Measure =
IF ( ISEMPTY ( Table2 ), "No", "Yes" )

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors