Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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