Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be 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

Reply
Hayleysea
Resolver II
Resolver II

Nuevo indicador de fila con respecto a la fecha pasada específica

Hola

Necesito una columna calculada que indique si un ID es nuevo cuando se compara con otra fecha con un indicador clave según el ejemplo siguiente:

IdFechaIndicador claveResultado
A1/03/202010
B1/03/202010
A2/03/2020 0
B2/03/2020 0
A3/03/2020 0
B3/03/2020 0
C3/03/2020 1

El indicador clave está en contra de 1/03/2020, así que esto es lo que quiero comparar.

Quiero comparar el último día (3/03/2020) con el día que tiene el indicador clave (1/03/2020) y producir un 1 en la columna de resultados si en realidad es un nuevo ID que se ha creado desde la última fecha con el indicador clave, de lo contrario un 0.

Cualquier ayuda muy apreciado!!

1 ACCEPTED SOLUTION
Hayleysea
Resolver II
Resolver II

Lo descubrí usando algo de lo @amitchandak dicho y haciendo algunos cambios.

Terminó con una columna calculada como esta:

Columna calculada ?
var keyindicatordate á CALCULATE(MAX(table[Date]), FILTER(table, table[keyindicator]-"1"))
var maxdateTM CALCULATE(MAX(table[Date]), FILTER(table, Table[ID]-EARLIER(table[ID])))
devolver IF(CALCULATE(DISTINCTCOUNT(table[ID]), FILTER(table, table[Date]-keyindicatordate && table[ID]-EARLIER(table[ID])))-CALCULATE(DISTINCTCOUNT(table[ID]), FILTER(table, table[Date]-maxdate && table[ID]-EARLIER( table[ID])))<0 && table[max week calculated column]-1,1,0)

View solution in original post

3 REPLIES 3
Hayleysea
Resolver II
Resolver II

Lo descubrí usando algo de lo @amitchandak dicho y haciendo algunos cambios.

Terminó con una columna calculada como esta:

Columna calculada ?
var keyindicatordate á CALCULATE(MAX(table[Date]), FILTER(table, table[keyindicator]-"1"))
var maxdateTM CALCULATE(MAX(table[Date]), FILTER(table, Table[ID]-EARLIER(table[ID])))
devolver IF(CALCULATE(DISTINCTCOUNT(table[ID]), FILTER(table, table[Date]-keyindicatordate && table[ID]-EARLIER(table[ID])))-CALCULATE(DISTINCTCOUNT(table[ID]), FILTER(table, table[Date]-maxdate && table[ID]-EARLIER( table[ID])))<0 && table[max week calculated column]-1,1,0)

@Hayleysea, I suggested a Measure

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
amitchandak
Super User
Super User

No podrá cambiar la fecha en caso de que utilice una columna calculada. tratar como una medida

measure =
var _max = maxx('Table','Date'[Date])
var _min = Minx('Table','Date'[Date])

return
if(CALCULATE(distinctCOUNT('Table'[ID]), FILTER(all('Table'), 'Table'[Date]=_max)) - CALCULATE(distinctCOUNT('Table'[ID]), FILTER(all('Table'), 'Table'[Date]=_min)) >=0,1, 0)
Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors
Top Kudoed Authors