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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

Dynamically display data

HI, 

@Jihwan_Kim 

I have table like this:

 

DateStorage Bin
1/2/2021BIN6
1/4/2021BIN7
2/5/2021BIN10
4/1/2021BIN7
5/8/2021BIN1
 BIN2
 BIN3
 BIN4
 BIN5
 BIN6
 BIN7
 BIN8
 BIN9
 BIN10

 

When in my slicer filter when I select the date range  1/2/2021 to 2/5/2021, it should display all the bins in that range and also with the dates which are blanks,it should display not matching Bins.

 

My output should be:

 

Output:comments
BIN6 
BiN7 
BiIN10 
BIN2This is not matched Bin from the Blank dates
BIN3This is non matched Bin from the Blank dates
BIN4This is non matched Bin from the Blank dates
BIN5This is non matched Bin from the Blank dates
BIN8This is non matched Bin from the Blank dates
BIN9This is non matched Bin from the Blank dates

 

 

 

The Bins which has no date (BIN6 , BIN7 and BIN10, are matched one in our date selection, so we do not want to display it and duplicate. 

 

Any help!

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Picture1.png

 

Comments measure : =
VAR _binlistindaterange =
VALUES ( Data[Storage Bin] )
VAR _allbinlistindatatable =
CALCULATETABLE ( VALUES ( Data[Storage Bin] ), ALL ( Dates[Date] ) )
RETURN
IF (
HASONEVALUE ( BINs[Storage Bin] ),
SWITCH (
TRUE (),
SELECTEDVALUE ( BINs[Storage Bin] ) IN _binlistindaterange, "",
SELECTEDVALUE ( BINs[Storage Bin] ) IN _allbinlistindatatable, BLANK (),
"This is not matched Bin from the Table"
)
)

 

Link to the pbix file 

 

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

View solution in original post

1 REPLY 1
Jihwan_Kim
Super User
Super User

Picture1.png

 

Comments measure : =
VAR _binlistindaterange =
VALUES ( Data[Storage Bin] )
VAR _allbinlistindatatable =
CALCULATETABLE ( VALUES ( Data[Storage Bin] ), ALL ( Dates[Date] ) )
RETURN
IF (
HASONEVALUE ( BINs[Storage Bin] ),
SWITCH (
TRUE (),
SELECTEDVALUE ( BINs[Storage Bin] ) IN _binlistindaterange, "",
SELECTEDVALUE ( BINs[Storage Bin] ) IN _allbinlistindatatable, BLANK (),
"This is not matched Bin from the Table"
)
)

 

Link to the pbix file 

 

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 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.