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
Hello,
I've created a measure to return a specific text value based on a selected date. I want to use that text valve to filter another table. Can this be done?
The Measure is:
Solved! Go to Solution.
Hi @medabee45 ,
According to your description, here's my solution.
Create a measure.
Check =
IF ( MAX ( 'Table (2)'[Crew] ) = [Crewonshift], 1, 0 )
Put the measure in the visual filter and select its value to 1.
After click apply filter, the visual will be filtered by the value of the Crewonshif.
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @medabee45 ,
According to your description, here's my solution.
Create a measure.
Check =
IF ( MAX ( 'Table (2)'[Crew] ) = [Crewonshift], 1, 0 )
Put the measure in the visual filter and select its value to 1.
After click apply filter, the visual will be filtered by the value of the Crewonshif.
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@medabee45 , Create a measure and use that in visual level filter
calculate (if ("Crewonshift" = "A", 1, blank()) , filter(Table, Table[Crew]=1) )
or
calculate (if ("Crewonshift" = "A" && Table[Crew] , 1, blank()) )
Countx(Values(Table[Role]), calculate (if ("Crewonshift" = "A" && Table[Crew] , 1, blank()) ) )
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.
| User | Count |
|---|---|
| 13 | |
| 10 | |
| 10 | |
| 9 | |
| 8 |