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
Welcome to the Power BI Community Show! Jeroen ter Heerdt talks about the importance of Data Modeling.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
User | Count |
---|---|
1 | |
1 | |
1 | |
1 | |
1 |