Forum Discussion

nmerl's avatar
nmerl
Frequent Visitor
7 years ago
Solved

historical Inventory Over Time

First time posting, so go easy :smileyhappy:   I have two tables, one which shows my current inventory at any given time, I have a separate inventory transaction table. i want to create a runni...
  • nmerl's avatar
    nmerl
    7 years ago

    I think i solved my issue by making a column like this

    column4 = CALCULATE(
    SUM(IV00102[Column]),
    FILTER(
    ALL(IV00102),IV00102[ITEMNMBR]=EARLIER(IV00102[ITEMNMBR])
    && (IV00102[DOCDATE]>=EARLIER(IV00102[DOCDATE])))
    )
     
    working on validating my data, but i think it seemed to have worked!!