Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.