Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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()) ) )
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |