Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi All,
| Date | Number |
| 19-Sep-22 | 100 |
| 19-Sep-22 | 100 |
| 19-Sep-22 | 102 |
| 20-Sep-22 | 103 |
| 20-Sep-22 | 103 |
| 20-Sep-22 | 103 |
| Number |
| 100 |
| 102 |
| 104 |
| 105 |
I want to create a visual by comparing the above tables
there will be a date filter, so when "19-Sep-22" is selected the visual should show
| Number |
| 104 |
| 105 |
and "20-Sep-22" is selected it should show
| Number |
| 100 |
| 102 |
| 104 |
| 105 |
can this be achieved?
regards,
Gopi
Solved! Go to Solution.
Hi,
I suggest having a disconnected table like below, and put the measure (below) into the Visual Filters Pane.
Please check the below picture and the attached pbix file.
Filter pane measure: =
IF (
COUNTROWS (
FILTER ( Number, NOT ( Number[Number] IN DISTINCT ( Data[Number] ) ) )
) = 0,
0,
1
)
Hi @Gopinath_iyer ,
Check this formula:
Measure = IF(SELECTEDVALUE('Table (2)'[Number]) in DISTINCT('Table'[Number]),1,0)
Best Regards,
Jay
Hi @Gopinath_iyer ,
Check this formula:
Measure = IF(SELECTEDVALUE('Table (2)'[Number]) in DISTINCT('Table'[Number]),1,0)
Best Regards,
Jay
Hi,
I suggest having a disconnected table like below, and put the measure (below) into the Visual Filters Pane.
Please check the below picture and the attached pbix file.
Filter pane measure: =
IF (
COUNTROWS (
FILTER ( Number, NOT ( Number[Number] IN DISTINCT ( Data[Number] ) ) )
) = 0,
0,
1
)
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 42 | |
| 35 | |
| 35 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 65 | |
| 58 | |
| 28 | |
| 27 | |
| 25 |