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
Hello to you all, come to ask for assistance.
Firstly, english isn't my mohter language, so i feel a bit confused if i'm being clear.
I'll try to give many details as possible.
I'm having some problems with time intlligence;
As it sees, I want to make the bar graph interactive with the
stampcards. As it shows in the pics.
When you have any interaction with the bar graph every other views at the dashboard turn error.
Those are the dax formulas in use:
¹%Over90 MoM% =
IF(
ISFILTERED('PERFIL_RENEG'[DT_BASE]),
ERROR("Medidas rápidas de inteligência de tempo somente podem ser agrupadas ou filtradas pela hierarquia de data fornecida pelo Power BI ou pela coluna de data primária."),
VAR __PREV_MONTH = CALCULATE([¹%Over90], DATEADD('PERFIL_RENEG'[DT_BASE].[Date], -1, MONTH))
RETURN
DIVIDE([¹%Over90] - __PREV_MONTH, __PREV_MONTH)
)¹%Over15-90 MoM% =
IF(
ISFILTERED('PERFIL_RENEG'[DT_BASE]),
ERROR("Medidas rápidas de inteligência de tempo somente podem ser agrupadas ou filtradas pela hierarquia de data fornecida pelo Power BI ou pela coluna de data primária."),
VAR __PREV_month = CALCULATE([¹%Over15-90], DATEADD('PERFIL_RENEG'[DT_BASE].[Date], -1, MONTH))
RETURN
DIVIDE([¹%Over15-90] - __PREV_month, __PREV_month)
)¹AtvMoM =
IF(
ISFILTERED('PERFIL_RENEG'[DT_BASE]),
ERROR("Medidas rápidas de inteligência de tempo somente podem ser agrupadas ou filtradas pela hierarquia de data fornecida pelo Power BI ou pela coluna de data primária."),
VAR __PREV_MONTH =
CALCULATE(
SUM('PERFIL_RENEG'[Saldo Ativo]),
DATEADD('PERFIL_RENEG'[DT_BASE].[Date], -1, MONTH)
)
RETURN
DIVIDE(SUM('PERFIL_RENEG'[Saldo Ativo]) - __PREV_MONTH, __PREV_MONTH))
Details provided by the BI software show this:
It says about the Date Column
Hi @Anonymous
Thanks for reaching out to us.
In your measure, the logic of IF() function is
it means if you filter the column PERFIL_RENEG'[DT_BASE], then the measure will return the error.
¹%Over90 MoM% =
IF(
ISFILTERED('PERFIL_RENEG'[DT_BASE]),
ERROR("Medidas rápidas de inteligência de tempo somente podem ser agrupadas ou filtradas pela hierarquia de data fornecida pelo Power BI ou pela coluna de data primária."),
VAR __PREV_MONTH = CALCULATE([¹%Over90], DATEADD('PERFIL_RENEG'[DT_BASE].[Date], -1, MONTH))
RETURN
DIVIDE([¹%Over90] - __PREV_MONTH, __PREV_MONTH)
)
so you can try this measure, in this measure, if you filter the column, then it will return the value of DIVIDE([¹%Over90] - __PREV_MONTH, __PREV_MONTH)
¹%Over90 MoM% =
VAR __PREV_MONTH = CALCULATE([¹%Over90], DATEADD('PERFIL_RENEG'[DT_BASE].[Date], -1, MONTH))
RETURN
IF(
ISFILTERED('PERFIL_RENEG'[DT_BASE]),
DIVIDE([¹%Over90] - __PREV_MONTH, __PREV_MONTH)
)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 37 | |
| 33 | |
| 29 | |
| 27 |
| User | Count |
|---|---|
| 133 | |
| 104 | |
| 61 | |
| 59 | |
| 55 |