Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hey guys, I've got this issue on Power BI. Suppose I sell some products in July, but I will get my money only after 3 months. I want to create a Cash-In column where the values will be shifted 3 cells down. How can I do it in Power BI? Thank you
Solved! Go to Solution.
@Anonymous,
You may refer to the DAX below.
Column = VAR m = Table1[Month] RETURN SUMX ( FILTER ( Table1, Table1[Month] = m - 3 ), Table1[Quantity] * Table1[Price] ) + 0
@Anonymous,
You may refer to the DAX below.
Column = VAR m = Table1[Month] RETURN SUMX ( FILTER ( Table1, Table1[Month] = m - 3 ), Table1[Quantity] * Table1[Price] ) + 0
User | Count |
---|---|
84 | |
76 | |
75 | |
43 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |