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.
Hi!! I'm going crazy trying to calculate the Projected column in Power BI as per the formula below -
All I need is - for a combination of warehouse and item,
if the value Phy in the previous month is <>0, Projected = Previous month Phy+previous month Backlog
If the value Phy in the previous month is= 0, Projected = Previous month's Projected+previous month Backlog
Appreciate your help!!
Thanks for your response! Is there any way to achieve this in Power Query? Any workarounds?
@SarahVenk Well, the first part is below but your second part delves into recursion and thus misery and can't be done in DAX:
Project Column =
VAR __Item = [Item]
VAR __WH = [Warehouse]
VAR __LMEnd = EOMONTH([Date],-1)
VAR __LM = DATE(YEAR(__LMEnd),MONTH(__LMEnd),1)
VAR __Table = FILTER('Table',[Warehouse] = __WH && [Item] = __Item && [Date] = __LM)
VAR __LMPhy = MAXX(FILTER(__Table,[Phy])
VAR __LMBacklog = MAXX(FILTER(__Table,[Backlog])
RETURN
IF(__LMPhy <> 0,__LMPhy + __LMBacklog, BLANK())
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
19 | |
14 | |
14 | |
11 | |
8 |