This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi everyone,
I’m working on a calculated column in Power BI and need some help with DAX. Here is what I’m trying to achieve:
Here is the DAX code I have so far:
StatusPolitica =
VAR SemanaAtual = WEEKNUM('PRINCIPAL'[DIA], 2)
VAR SiglaAtual = 'PRINCIPAL'[SIGLA]
VAR MotivoAtual = SELECTEDVALUE('PRINCIPAL'[MOTIVO])
VAR MarcaçõesSemana =
CALCULATE(
COUNTROWS('PRINCIPAL'),
FILTER(
'PRINCIPAL',
WEEKNUM('PRINCIPAL'[DIA], 2) = SemanaAtual &&
'PRINCIPAL'[SIGLA] = SiglaAtual &&
'PRINCIPAL'[CONTADOR] = 1
)
)
RETURN
IF(
MotivoAtual IN {"Afastamento", "Férias"},
MotivoAtual,
IF(
MarcaçõesSemana >= 3,
"Cumpriu",
"Não Cumpriu"
)
)However, this code isn’t working as expected. It still shows “Cumpriu” or “Não Cumpriu” even when the “MOTIVO” column has “Afastamento” or “Férias”.
Could someone help me identify what I’m doing wrong or suggest a better approach?
Thank you!
Feel free to adjust the wording as needed. This should provide a clear and detailed explanation of your issue to the community. If you need any more help, let me know!
Solved! Go to Solution.
Hi @amaral_diego ,
You can try this calculation column.
StatusPolitica =
VAR SemanaAtual = WEEKNUM('PRINCIPAL'[DIA], 2)
VAR SiglaAtual = 'PRINCIPAL'[SIGLA]
VAR MotivoAtual = 'PRINCIPAL'[MOTIVO]
VAR Marca =
CALCULATE(
COUNTROWS('PRINCIPAL'),
FILTER(
'PRINCIPAL',
WEEKNUM('PRINCIPAL'[DIA], 2) = SemanaAtual &&
'PRINCIPAL'[SIGLA] = SiglaAtual &&
'PRINCIPAL'[CONTADOR] = 1
)
)
RETURN
IF(
MotivoAtual IN {"Afastamento", "Férias"},
MotivoAtual,
IF(
Marca >= 3,
"Cumpriu",
"Não Cumpriu"
)
)
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @amaral_diego ,
You can try this calculation column.
StatusPolitica =
VAR SemanaAtual = WEEKNUM('PRINCIPAL'[DIA], 2)
VAR SiglaAtual = 'PRINCIPAL'[SIGLA]
VAR MotivoAtual = 'PRINCIPAL'[MOTIVO]
VAR Marca =
CALCULATE(
COUNTROWS('PRINCIPAL'),
FILTER(
'PRINCIPAL',
WEEKNUM('PRINCIPAL'[DIA], 2) = SemanaAtual &&
'PRINCIPAL'[SIGLA] = SiglaAtual &&
'PRINCIPAL'[CONTADOR] = 1
)
)
RETURN
IF(
MotivoAtual IN {"Afastamento", "Férias"},
MotivoAtual,
IF(
Marca >= 3,
"Cumpriu",
"Não Cumpriu"
)
)
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
It's worked, thanks a lot!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 4 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 14 | |
| 8 | |
| 7 | |
| 7 | |
| 6 |