Forum Discussion
joaquinel
Helper I
3 years agoFiltred with two differents dates
Hi,
I need to count my data filtered by two dates. The main report has the filter according with my Calender Table, which is one of the fields of dates that I need, but I don't know how to adress the second one. It should be as below.
In the example only should count the two firsts lines
| Id | FechaCobro | FechaIniciValidez |
| 1 | 02/01/2023 | 02/01/2023 |
| 2 | 02/01/2023 | 02/01/2023 |
| 3 | 02/01/2023 | 02/02/2023 |
CALCULATE
(
COUNT
(
Pagos[IdPersonaOrigen]
),
Pagos[CuentaContable] = "70810030",
USERELATIONSHIP( Pagos[FechaInicioValidez],'1CalFCobro'[Date] )
)
No RepliesBe the first to reply