Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I want to create a table using a measure i created. The measure gives the number of employees per month and now I want to get it in a table.
This is how i calculated the measure:
Solved! Go to Solution.
Hi, @kb19270
You can't filter the data value in a calculated table but you can apply a filter to a table visual filter pane.
Please add another measure:
visaul filter =
VAR selectedDate = MAX('Dates'[Date])
VAR employeeStartDate = MAX('info TeamMembers'[HireDate])
VAR employeeEndDate = MAX('info TeamMembers'[TermDate])
RETURN IF(employeeStartDate<= selectedDate && OR(employeeEndDate>=selectedDate, employeeEndDate=BLANK() ),1,0)
Then apply it to table visual filter pane.
Best Regards,
Community Support Team _ Eason
Hi, @kb19270
You can't filter the data value in a calculated table but you can apply a filter to a table visual filter pane.
Please add another measure:
visaul filter =
VAR selectedDate = MAX('Dates'[Date])
VAR employeeStartDate = MAX('info TeamMembers'[HireDate])
VAR employeeEndDate = MAX('info TeamMembers'[TermDate])
RETURN IF(employeeStartDate<= selectedDate && OR(employeeEndDate>=selectedDate, employeeEndDate=BLANK() ),1,0)
Then apply it to table visual filter pane.
Best Regards,
Community Support Team _ Eason
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
71 | |
54 | |
38 | |
31 |
User | Count |
---|---|
71 | |
64 | |
60 | |
50 | |
45 |