Forum Discussion
Edinson_33
3 years agoNew Member
create column using dax value repeats
I have this table i need create a column with dax call "Pilo", but i have condicions for the value 1 o 0 , is the colunm (Id Año sem Beca) have the same value put 1 when see for frist time but is app...
Edinson_33
3 years agoNew Member
Hello , the only adictional column i see and is diferrent is
Periodo
15
45
75
15
45
75
15
45
97
- tamerj13 years agoCommunity Champion
Please try
Pilo =
INT (
'Table'[Periodo]
= CALCULATE ( MIN ( 'Table'[Periodo] ), ALL ( 'Table'[Periodo] ) )
)