Forum Discussion
Anonymous
8 years agoNot applicable
How to Compare two date fields?
I want to compare two date fields or set a value in the "Distancia" field when is showing the oldest date field ("Fecha"). I have this: 'Registro Diario' is a table. A column called "Fecha" and...
- 8 years ago
Anonymous
Hi, instead of using a calculated column you need to use a measure
D2 = IF ( MIN ( 'Registro Diario'[Fecha] ) = [Prueba]; 0; 1 )
Regards
Victor
Anonymous
8 years agoNot applicable
Vvelarde
8 years agoCommunity Champion
Anonymous
Hi, instead of using a calculated column you need to use a measure
D2 = IF ( MIN ( 'Registro Diario'[Fecha] ) = [Prueba]; 0; 1 )
Regards
Victor