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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have the date filter
I have the measure that verifies if a customer has had a visit in that range, this is fine.
Seguimiento_Cliente = CALCULATE(COUNT(MovInteracciones_sql[Interaction Template Code]),MovInteracciones_sql[Interaction Template Code]="SEG_CLIENT")
Now I would like to know which client has visited but outside those dates.
I've tried the following but it doesn't quite work for me.
# Cli Sin Visitas en periodo =
VAR ClientesPrimeraVisita =
ADDCOLUMNS(
VALUES(MovInteracciones_sql[Contact No_]),
"UtimaVisita",
CALCULATE(
MAX(MovInteracciones_sql[Date]),
ALL(Fechas),MovInteracciones_sql[Interaction Template Code]="SEG_CLIENT"
)
)
VAR ClientesVisita =
FILTER(
ClientesPrimeraVisita,
NOT [UtimaVisita] IN VALUES(Fechas[Date]) && NOT(ISBLANK([UtimaVisita]))
)
VAR Resultado = COUNTROWS(ClientesVisita)
RETURN Resultado
Can anyone help me?
Thank you.
If that date column is connected to your fact table then it will not be possible. You will need to feed the slicer from a disconnected table.
The table where the interactions are and know if there is a visit or not has a column also dated that is connected to the dates.
I don't quite understand what you're saying about the column date this connected to table facts. And I don't know what you mean by powering a "cutter" from a disconnected board.
Thank you
Ah, the joys of translation... "slicer" means a filter visual
"board" means table (in your data model)