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
Anonymous
Not applicable

sum if date <

hi, I have a table like this.

mhv22_0-1649701837977.png

I need a measure to sum STOCK if date is<2022-03-10 (year= 2022, month= 03, day=10) I tried like this:

 

cantidad stock viejo = CALCULATE(SUM(curva_integrada[cantidad_stock]);curva_integrada[fecha_ultimo_ingreso] < 2022-03-10)
cantidad stock viejo = CALCULATE(SUM(curva_integrada[cantidad_stock]);curva_integrada[fecha_ultimo_ingreso] < 10-03-2022)
 
and all possible combinations, but it´s not working...what am I doing wrong??
 
thanks in advance!

 

 

 

 

 

1 ACCEPTED SOLUTION
vojtechsima
Resident Rockstar
Resident Rockstar

Hi, @Anonymous 
function DATEVALUE should do the trick.

CALCULATE(SUM(curva_integrada[cantidad_stock]);curva_integrada[fecha_ultimo_ingreso] < DATEVALUE("10/03/2021"))

View solution in original post

3 REPLIES 3
vojtechsima
Resident Rockstar
Resident Rockstar

Hi, @Anonymous 
function DATEVALUE should do the trick.

CALCULATE(SUM(curva_integrada[cantidad_stock]);curva_integrada[fecha_ultimo_ingreso] < DATEVALUE("10/03/2021"))
Anonymous
Not applicable

thanks @vojtechsima , that was very helpful!!!!

@Anonymous 
Happy to help, also there's another option and that is to use function DATE, where you would construct the date like this: 

DATE(<year>, <month>, <day>)  

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!

November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

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.