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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
weinerheineken
Frequent Visitor

Create a Quantity On Hand measure

I'd like to create a measure that computes the stock on hand. But the sum of the stock has meaning only per day. For any selected range of dates, it should only take the sum of the values in the last date in context.

I mean if I select a date, let's say 2023-01-22, I should get the stock for this particular day. But if I select a range like 2022-01-01 to 2022-12-31, it should return the sum of the values only for the last date which is in this case 2022-12-31.

 

I have two tables:

- Inventory: Warehouse ID, Product ID, Quantity On Hand, Date Key ( format YYYYMMDD)

- Dates: Date Key ( format YYYYMMDD ), Date ( date format)

 

The two tables are linked by the Date Key column.

 

I really need help, please.

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @weinerheineken 

 

try like
stock on hand =
VAR _date = MAX(Dates[Date Key])
RETURN
CALCULATE(
    SUM(Inventory[Quantity On Hand]),
    Dates[Date Key] = _date
)

View solution in original post

1 REPLY 1
FreemanZ
Super User
Super User

hi @weinerheineken 

 

try like
stock on hand =
VAR _date = MAX(Dates[Date Key])
RETURN
CALCULATE(
    SUM(Inventory[Quantity On Hand]),
    Dates[Date Key] = _date
)

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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