Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi Hi
I would like to get some advice on should I approach this scenarios if possible
Table A with Column "DayLeft"
Table B
These 2 tables are not related
I wanted
1) create a slicer with TableB [Expire] Column
2) when i choose 3 Months
3) TableA will only display DayLeft >= 90
Thank you
Solved! Go to Solution.
Hello @sxuanjing
Try to Create a measure which will help you acheive this
Something like below
Tag = IF(
MAX( TableA[DayLeft] ) >= SELECTEDVALUE(TableB[value]),
1,0
)
Attached is the screenshot and Power Bi file
Have a look
Regards
sanalytics
if it is your solution then please like and accept it as your solution
Hi @sanalytics
Thank you so much for your time to prepare the solution. 😀
I really appreciate it.
Hello @sxuanjing
Try to Create a measure which will help you acheive this
Something like below
Tag = IF(
MAX( TableA[DayLeft] ) >= SELECTEDVALUE(TableB[value]),
1,0
)
Attached is the screenshot and Power Bi file
Have a look
Regards
sanalytics
if it is your solution then please like and accept it as your solution
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.