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
CARL12345
Regular Visitor

Select Value from row before

Hello to everybody, 

I have a question for calculating in PowerQuery with the value of the row before. 

I have a list with movements of goods in a warehouse.

Because there a of couse some goods with more than one movement I want to calculate the value for this good referring to the value before the movement. 

 

As an example: 

Date                     stock per date                Article                 kind of movement(+ for orders                                 quantity

                                                                                                  /- for taking material to production)    

01.01.2022            10                                123456                         -                                                                               5                          02.01.2022              5                                 123456                        -                                                                               4

03.01.2022              1                                 123456                        +                                                                            15

03.01.2022            16                                 123456                        -                                                                                5

 

 

Amd so on... Is there a posibility to solve this problem?

 

I alredy added a colum with an index and an second colum with an index +1. So I can merge the table with itsself an I can check if the value of the colum for the arcitle in the row before is the same value in the actual row. So far, so nice. But now I am not flexbile enough with my code and not far enough with my knowledge of writing formulas in M. How can I calculate the current value with the value before? 

 

In Excel so far it is possible for me, but I would like to do it in Query, because doing it in Excel after refreshing the data not all colums are filled with the formula I use in Excel. 

 

Thanks in advance

4 REPLIES 4
Carl1985
Helper I
Helper I

Good morning, 

 

thx for your fast replies. Maybe it will be easier to understand if I upload some screenshots from the data I use. 

Because I decrease the column width, I will first explain what is in the colums.

Colum1: project number of cumstomer

Colum2: date of warehouse movement

Colum3: article code

Colum9: stock of arcticle before movement

Colum10: quantity of momement (- for taking material to production)

Colum11: stock after movement

Rest of colum is for my promblem not needed, but is needed for the presentation of the result. 

 

Carl1985_0-1662444136057.png

 

I tried this code as a solution for my problem:

= Table.AddColumn(#"addcolum", "Benutzerdefiniert", each if [Häufigkeit]="Doppelt" then ([colum11]{-1}+[colum10]) else [colum10]).

 

If there is just one movement for an article this code is useful, but with two or more movements not. (s. Screenshot) I get an error, for article with more movements. Value can't be converted in a list.

Carl1985_1-1662445116798.png

Carl1985_2-1662445150899.png

I also had a look at this solution: 

Solved: Re: Power Query/Power Pivot - Dynamically Calculat... - Microsoft Power BI Community

 

But to be honest: I didn't understand the code. 😞 

Hi @Carl1985

@CARL12345 

 

The straightforward solution to your code (Table.AddColumn(#"addcolum", "Benutzerdefiniert", each if [Häufigkeit]="Doppelt" then ([colum11]{-1}+[colum10]) else [colum10]).) is below. I've added some comments in the code, which hopefully make sense.

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjQwMDC2VNJRcs1MS0zOADIMDcz1jCzNgCxdQz0DI7CImZ6RuZlSrA6Sepf8goLUnBIiNJhYGJkiW2AExSao8ggDQZK6BnrGIFFDPTNTpdhYAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Atricle = _t, Häufigkeit = _t, colum9 = _t, colum10 = _t, colum11 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"colum9", type number}, {"colum10", type number}, {"colum11", type number}}),
    
    // Code in the next line is iterating through all rows in the table applying the test and it test is satisfied we take a previous line [stored as last item in a] via List.Last(a)
    // and then add it to colum10, otherwise [if the test fails] we take colum10 only
    Calculate = List.Accumulate(Table.ToRecords(#"Changed Type"), {}, (a,n)=> a & {Record.AddField(n, "Benutzerdefiniert", if n[Häufigkeit]="Doppelt" then (List.Last(a)[colum11]+n[colum10]) else n[colum10])} ),
    
    //converting the list of records which we made on the previous step back to a table using value.type to format the table
    BackToTable = Table.FromRecords(Calculate, Value.Type(Table.AddColumn(#"Changed Type", "Benutzerdefiniert", each null, type number)))
in
    BackToTable

 

But I do not understand the meaning of the column [Benutzerdefiniert] that you create. May be there is someting wrong with the formula? Did you mean to use else coum11 instead of colum10? Anyway, it should be easy to sort out. AAs you can see, I pretty much just using a straight copy paste of your formula, just refereing it to List.Last rather than {-1}.

 

Cheers,

John 

jbwtp
Memorable Member
Memorable Member

Hi @CARL12345,

 

Would this be something similar to this post?

Solved: Re: Power Query/Power Pivot - Dynamically Calculat... - Microsoft Power BI Community

 

Cheers,

John

 

KT_Bsmart2gethe
Impactful Individual
Impactful Individual

Hi @CARL12345 ,

 

I don't seem to be able to see $value in the provided example. 

 

Cell Reference 

 

Let me know if it helps with your case. O

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.

Top Solution Authors
Top Kudoed Authors