Hay Expertos
Necesito una medida DAX para mostrar i la tarjeta el nombre del mes (formato de clasificación, es decir, enero) y el año según mi selección de segmentación de datos. Entonces, si seleccioné enero del mes sclier y 2021 del año sclier, el espectáculo en la tarjeta
Enero 2021
Solved! Go to Solution.
@Route111 , Pruebe la siguiente medida
Año-Mes =
VAR __Month =
IF ( HASONEVALUE ( Table[MonthName] ), VALUES ( Table[MonthName] ) )
VAR __Year =
IF ( HASONEVALUE ( Table[MonthName] ), VALUES ( Table[Year] ) )
DEVOLUCIÓN
__Month & " " & __Year
@Route111 , Pruebe la siguiente medida
Año-Mes =
VAR __Month =
IF ( HASONEVALUE ( Table[MonthName] ), VALUES ( Table[MonthName] ) )
VAR __Year =
IF ( HASONEVALUE ( Table[MonthName] ), VALUES ( Table[Year] ) )
DEVOLUCIÓN
__Month & " " & __Year
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!