I have a report in excel as shown in table where there are 7 columns. "Backlog" column is calculated column, in which, I have applied formula in Row1 of Backlog col.
=IFERROR(
IF(
Month End="Y",
((IFERROR(IF(01/2020=Report Month,249 - GT,249),""))-Open),
IFERROR(IF(01/2020=Report Month,249 - GT,249),"")
),
""
)
The output I got is 249 (as shown in Backlog column).
Now, I want to apply the formula in Power bi dax to get Backlog column. In power bi table, I only have Report Month, Report week, Month End, Closed, Open and GT column. Please let me know what formula I can use to get backlog column?