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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Visualize the missing data

Hi, I have a dataset as below:

 

Table 1 Dataset :::::::: On date 1, I have 10 data and on 2nd 15 data and on 3rd 26 data.

Table 2 Dataset :::::::: I have 26 data. Only data I have, no Date.

 

Count of Table 1 is distinct count.

1.PNG

When I click on Date 1, the data will become like:

2.PNG

Now I want to show the Missing 16 Data when i click Date 1.

If I click Date 2, it should show the missing 11 Data.

And nothing to show if when i click Date 3 as all Data is present in Date 3.

 

Any heads up will help me much!! Thanks!

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

This should be possible in the Query Editor.  Share the raw data in a format that can be pasted in an Excel file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Nathaniel_C
Community Champion
Community Champion

@Anonymous ,

 

Here you go: Did a LOOKUPVALUE() using the other table column as both the column to peruse and the column to return matched against the shorter column. and added a if statement that return the ones that are not there.

 

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel

 

 

look = If(LOOKUPVALUE(qw[Column1],qw[Column1],ol[Column1]),BLANK(),ol[Column1])

 

 

 

dif.PNG

 





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

Proud to be a Super User!




Nathaniel_C
Community Champion
Community Champion

@Anonymous ,

Try EXCEPT () https://docs.microsoft.com/en-us/dax/except-function-dax

 

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel





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

Proud to be a Super User!




Anonymous
Not applicable

Except () will work only if the number of columns of both tables are same. Is there any other way to acheive this?

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Solution Authors