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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi, guys
I have a difficulty, I created the following measure to dilute my goal into days in my calendar table:
Meta Diluida =
VAR MesAno = MONTH(d_calendario[Date])&YEAR(d_calendario[Date])
VAR ProjetoSelecionado = SELECTEDVALUE(projetosReaal[Nome do Projeto Original])
RETURN
IF(
d_calendario[Dias de trabalho]=1,
DIVIDE(
CALCULATE(
SUM(MetaUH[Meta Desafio]),
FILTER(
MetaUH,
MetaUH[Mes ano formula padrão] = MesAno || MetaUH[Mes ano formula padrão] = ProjetoSelecionado
)
),
[Dias uteis Mês])
)
And then I added it up and I'm using it in my visuals
Total Meta Diluida =
VAR ProjetoSelecionado = SELECTEDVALUE(MetaUH[Projeto])
RETURN
CALCULATE(
SUM(d_calendario[Meta Diluida]),
FILTER(
projetosReaal,
projetosReaal[Nome do Projeto Original] = ProjetoSelecionado
)
)
When I do the filter by selecting date, it works, but when I select the project, the measurement remains static. How could I adjust this?
Solved! Go to Solution.
Hi @kasife,
I can't access the share link, can you please paste some dummy data here with table format? We can directly copy and enter them into power bi to test coding formula.
How to Get Your Question Answered Quickly
In addition, you can also try to use the following measure formula if helps:
Total Meta Diluida =
CALCULATE (
SUM ( d_calendario[Meta Diluida] ),
FILTER (
ALLSELECTED ( projetosReaal ),
projetosReaal[Nome do Projeto Original] IN VALUES ( MetaUH[Projeto] )
)
)
Regards,
Xiaoxin Sheng
Hi @kasife,
I can't access the share link, can you please paste some dummy data here with table format? We can directly copy and enter them into power bi to test coding formula.
How to Get Your Question Answered Quickly
In addition, you can also try to use the following measure formula if helps:
Total Meta Diluida =
CALCULATE (
SUM ( d_calendario[Meta Diluida] ),
FILTER (
ALLSELECTED ( projetosReaal ),
projetosReaal[Nome do Projeto Original] IN VALUES ( MetaUH[Projeto] )
)
)
Regards,
Xiaoxin Sheng
@Anonymous it worked. Thansks
@kasife , Please share sample data and expected output.
But the approach of following should help
Power BI: HR Analytics - Employees as on Date : https://youtu.be/e6Y-l_JtCq4
https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...
Power BI HR Active Employee Tenure Bucketing, and Hired, Terminated, and Active employees: https://youtu.be/fvgcx8QLqZU
Matrix as Project plan Visual: https://youtu.be/R25QoiyoSVs
@amitchandak Thank you very much for your feedback. Follow the link
https://ufile.io/bxgcjw55
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!