Forum Discussion
GermanCabrera
6 years agoNew Member
DAX
Hola Alguien sabe como otener la fecha actual cuando la fecha máxima es nulo o en blanco. Aqui la fórmula: Fecha Sistema = Max( 'dsl com_Pedido'[FechaSistema] ) Si esto Max( 'dsl com_Pedid...
- Anonymous6 years ago
Hi GermanCabrera ,
Please try the following formula for your measure:
Measure = IF(TRIM(MAX('dsl com_Pedido'[FechaSistema]))=""||ISBLANK(MAX('dsl com_Pedido'[FechaSistema])),TODAY(),MAX('dsl com_Pedido'[FechaSistema]))Best Regards
Rena
Anonymous
6 years agoNot applicable
Hi GermanCabrera ,
Please try the following formula for your measure:
Measure = IF(TRIM(MAX('dsl com_Pedido'[FechaSistema]))=""||ISBLANK(MAX('dsl com_Pedido'[FechaSistema])),TODAY(),MAX('dsl com_Pedido'[FechaSistema]))Best Regards
Rena