March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hola
Quiero mostrar el valor total de un mes mediante la segmentación de datos entre segmentación de datos.
Sin embargo, cuando intento hacer que sea más fácil para el usuario para que el usuario pueda seleccionar desde el primero del mes el 1 del segundo mes me da el total de ambos meses.
¿Alguna idea para cambiar de medida o tengo que cambiar mi enfoque?
Usaré la misma página para insertar SAMEPERIODASLATYEAR y añadir una tarjeta KPI.
Muchas gracias.
Rgds,
Niel
Solved! Go to Solution.
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
@niel_orvyn1 , Trate de tener tabla de fechas separada Intente
medida :
var _max á eomonth(maxx(allselected(Date),Table[Date]),0)
var _min á eomonth(minx(allselected(Date),Table[Date]),-1)+1
devolución
calculate(sum(Tbale[value]),filter(all(Table[Date]), Table[Date] >-_min && Table[Fecha] <-_max))
medida :
var _max á eomonth(maxx(allselected(Date),Table[Date]),0)
var _min á eomonth(minx(allselected(Date),Table[Date]),-1)+1
devolución
calculate(sum(Tbale[value]),filter(all(Date[Date]), Date[Date] >-_min && Table[Date] <-_max))
Así que el tiempo esto puede agrupar los datos en pocas fechas. si eso sucede, consulte este video
https://www.youtube.com/watch?v=duMSovyosXE
@niel_orvyn1 , Trate de tener tabla de fechas separada Intente
medida :
var _max á eomonth(maxx(allselected(Date),Table[Date]),0)
var _min á eomonth(minx(allselected(Date),Table[Date]),-1)+1
devolución
calculate(sum(Tbale[value]),filter(all(Table[Date]), Table[Date] >-_min && Table[Fecha] <-_max))
medida :
var _max á eomonth(maxx(allselected(Date),Table[Date]),0)
var _min á eomonth(minx(allselected(Date),Table[Date]),-1)+1
devolución
calculate(sum(Tbale[value]),filter(all(Date[Date]), Date[Date] >-_min && Table[Date] <-_max))
Así que el tiempo esto puede agrupar los datos en pocas fechas. si eso sucede, consulte este video
https://www.youtube.com/watch?v=duMSovyosXE
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
@AllisonKennedy y @amitchandak
Muchas gracias por sus respuestas y ayuda. Agregar una tabla dimdate resolvió mi problema, anteriormente estaba usando la fecha de la tabla original😞
Saludos
Niel
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.